summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--kconfiglib.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 428b15b..02a45f8 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -3696,7 +3696,7 @@ def expr_value(expr):
# ...then compare them lexicographically
comp = _strcmp(op1.str_value, op2.str_value)
else:
- # Otherwise, try to compare them as numbers.
+ # Otherwise, try to compare them as numbers
try:
comp = _sym_to_num(op1) - _sym_to_num(op2)
except ValueError: