summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlf Magnusson <ulfalizer@gmail.com>2017-11-26 15:10:36 +0100
committerUlf Magnusson <ulfalizer@gmail.com>2017-11-26 15:11:32 +0100
commitd63ef8aa53a1d372a38483bcbd91cbaec082378e (patch)
tree81a2cf15cb865ecded8b8cf4e98df63ba5aaf154
parent7f85e810c2fd22098049cc490532f8f7c17f8315 (diff)
Fix _lookup_sym() docstring typo
s/_parsing_configs/_parsing_kconfigs/
-rw-r--r--kconfiglib.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/kconfiglib.py b/kconfiglib.py
index 71810bd..6f36f73 100644
--- a/kconfiglib.py
+++ b/kconfiglib.py
@@ -1091,8 +1091,8 @@ class Kconfig(object):
def _lookup_sym(self, name):
"""
Fetches the symbol 'name' from the symbol table, creating and
- registering it if it does not exist. If '_parsing_configs' is False, it
- means we're in eval_string(), and new symbols won't be registered.
+ registering it if it does not exist. If '_parsing_kconfigs' is False,
+ it means we're in eval_string(), and new symbols won't be registered.
"""
if name in self.syms:
return self.syms[name]