diff options
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 151a521..c08d838 100644 --- a/kconfiglib.py +++ b/kconfiglib.py @@ -340,7 +340,7 @@ class Config(object): merely referred to in the configuration will be included in the result, and will appear in the order that they are defined within the Kconfig configuration files.""" - return self.syms.values() if all_symbols else self.kconfig_syms + return list(self.syms.values()) if all_symbols else self.kconfig_syms def __iter__(self): """Convenience function for iterating over the set of all defined |
