diff options
| author | Ulf Magnusson <ulfalizer@gmail.com> | 2015-08-06 13:43:54 +0200 |
|---|---|---|
| committer | Ulf Magnusson <ulfalizer@gmail.com> | 2015-08-06 13:45:19 +0200 |
| commit | ba71a0eac153d05996af529a647a1ab97163802a (patch) | |
| tree | ae062d6069888aa66c4ec746a3b0acfd375b33bf /kconfiglib.py | |
| parent | 059ff310a49996d1a3e0dd495647c8df532db0ed (diff) | |
Fix _parse_block() 'parent' documentation re. ifs.
Ifs do not have an object representation, so 'parent' can never be an
if.
Diffstat (limited to 'kconfiglib.py')
| -rw-r--r-- | kconfiglib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kconfiglib.py b/kconfiglib.py index 8af3a51..296a13b 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -615,7 +615,7 @@ class Config(object): end_marker: The token that ends the block, e.g. T_ENDIF ("endif") for ifs. None for files. - parent: The enclosing menu, choice or if, or None if we're at the top + parent: The enclosing menu or choice, or None if we're at the top level. deps: Dependencies from enclosing menus, choices and ifs. |
