diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-12 14:11:22 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-12 14:11:22 +0200 |
| commit | 9585ca43434f9caeed6176fc179bea351ded5579 (patch) | |
| tree | 2265b72ca1ecf2758e0f47db6a8821d24ca40e56 | |
| parent | 85126f7ebdb78035445108211efe4d98f595cbf1 (diff) | |
_parse_factor() style nit.
| -rw-r--r-- | kconfiglib.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index fb94147..00df354 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -859,12 +859,11 @@ class Config(object): return token relation = EQUAL if (feed.get_next() == T_EQUAL) else UNEQUAL - token_2 = feed.get_next() + token_2 = feed.get_next() if self._cur_sym_or_choice is not None and \ isinstance(token_2, Symbol): self._cur_sym_or_choice.referenced_syms.add(token_2) - return (relation, token, token_2) if token == T_NOT: |
