diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-11 01:09:14 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-11 01:18:28 +0200 |
| commit | 3b41368da8dbcf4d797bdd6a19104e39c092161d (patch) | |
| tree | d8c2d21f0880942fbd2629067c9cbe34d47c67a4 /kconfiglib.py | |
| parent | fd95003b10baeb41b91259fff221652d13a7288e (diff) | |
Blank line nits.
Diffstat (limited to 'kconfiglib.py')
| -rw-r--r-- | kconfiglib.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 74856c2..f945ebd 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -835,11 +835,9 @@ class Config(object): def _parse_factor(self, feed): if feed.check(T_OPEN_PAREN): expr_parse = self._parse_expr_2(feed) - if not feed.check(T_CLOSE_PAREN): _parse_error(self._line, "missing end parenthesis.", self._filename, self._linenr) - return expr_parse if feed.check(T_NOT): @@ -960,7 +958,6 @@ class Config(object): kconfig_file = tokens.get_next() exp_kconfig_file = self._expand_sym_refs(kconfig_file) f = os.path.join(self.base_dir, exp_kconfig_file) - if not os.path.exists(f): raise IOError('{0}:{1}: sourced file "{2}" (expands to ' '"{3}") not found. Perhaps base_dir ' |
