summaryrefslogtreecommitdiff
path: root/kconfiglib.py
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2018-01-25 02:46:10 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2018-01-25 02:46:10 +0100
commit86750d9874a2f3dbee0b846e3bb9008c57c1f6c5 (patch)
treee27bc9b86bc15309eb05e2d09653fabacc3b7812 /kconfiglib.py
parent8d7235f493115a1371e688f0efdd69c1effea307 (diff)
Comment nit
Diffstat (limited to 'kconfiglib.py')
-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: