diff options
| author | Peter LaFosse <peter@vector35.com> | 2017-12-18 11:43:43 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2017-12-18 11:43:43 -0500 |
| commit | 0963fc9e3623f9758afb63b4b089a0fa7873c395 (patch) | |
| tree | 079f984c22035dc9de02e9c6b3f483b4bea17624 /python | |
| parent | 89a1e8d47efbf85055b5053823d77d67c54e074e (diff) | |
Remove newline from split lines as it breaks more than it fixes
Diffstat (limited to 'python')
| -rw-r--r-- | python/scriptingprovider.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/scriptingprovider.py b/python/scriptingprovider.py index 6b03d49e..c92c249a 100644 --- a/python/scriptingprovider.py +++ b/python/scriptingprovider.py @@ -548,7 +548,7 @@ class PythonScriptingInstance(ScriptingInstance): self.locals["current_mlil"] = self.active_func.medium_level_il for line in code.split("\n"): - self.interpreter.push(line + "\n") + self.interpreter.push(line) if self.locals["here"] != self.active_addr: if not self.active_view.file.navigate(self.active_view.file.view, self.locals["here"]): |
