diff options
Diffstat (limited to 'lldb/packages/Python/lldbsuite/test/lldbinline.py')
-rw-r--r-- | lldb/packages/Python/lldbsuite/test/lldbinline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lldb/packages/Python/lldbsuite/test/lldbinline.py b/lldb/packages/Python/lldbsuite/test/lldbinline.py index e27cb156f05..67a5e817970 100644 --- a/lldb/packages/Python/lldbsuite/test/lldbinline.py +++ b/lldb/packages/Python/lldbsuite/test/lldbinline.py @@ -141,7 +141,7 @@ class InlineTest(TestBase): self.do_test() def execute_user_command(self, __command): - exec __command in globals(), locals() + exec(__command, globals(), locals()) def do_test(self): exe_name = "a.out" |