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 0d58ae2..87453a6 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -1107,7 +1107,7 @@ class Kconfig(object):
# ...except we translate n, m, and y into the
# corresponding constant symbols, like the C
# implementation
- token = self._lookup_const_sym(name)
+ token = self.const_syms[name]
else:
token = self._lookup_sym(name)