diff --git a/volatility/framework/symbols/__init__.py b/volatility/framework/symbols/__init__.py index 573fc3773..f2ee98c61 100644 --- a/volatility/framework/symbols/__init__.py +++ b/volatility/framework/symbols/__init__.py @@ -56,7 +56,7 @@ class SymbolSpace(collections.abc.Mapping): def __iter__(self): """Iterates through all available tables in the symbol space""" - return self._dict.__iter__() + return iter(self._dict) def append(self, value): """Adds a symbol_list to the end of the space"""