diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-08 15:30:11 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2015-06-08 15:30:11 +0200 |
| commit | f5ec66f962b17ba76974befe6f5193410bd04fde (patch) | |
| tree | 69b2790ff6ea10a95a2997536afd6fb926ebf9f1 /kconfiglib.py | |
| parent | 96403a3f261ed200fd1229bb114b0bac815d8762 (diff) | |
expr_to_str() nit.
Diffstat (limited to 'kconfiglib.py')
| -rw-r--r-- | kconfiglib.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 4b1497b..db45ac9 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -1930,8 +1930,7 @@ def _expr_to_str_rec(expr): _sym_str_string(expr[2])] def _expr_to_str(expr): - s = "".join(_expr_to_str_rec(expr)) - return s + return "".join(_expr_to_str_rec(expr)) # Tokens (T_AND, T_OR, T_NOT, |
