We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 708d933 commit 7f2d8eaCopy full SHA for 7f2d8ea
volatility3/cli/volshell/generic.py
@@ -95,8 +95,8 @@ def run(
95
96
sys.ps1 = f"({self.current_layer}) >>> "
97
# Dict self._construct_locals_dict() will have priority on keys
98
- combined_locals = self._construct_locals_dict().copy()
99
- combined_locals.update(additional_locals)
+ combined_locals = additional_locals.copy()
+ combined_locals.update(self._construct_locals_dict())
100
self.__console = code.InteractiveConsole(locals=combined_locals)
101
# Since we have to do work to add the option only once for all different modes of volshell, we can't
102
# rely on the default having been set
0 commit comments