diff options
| author | Peter LaFosse <peter@vector35.com> | 2019-12-09 11:49:07 -0500 |
|---|---|---|
| committer | Peter LaFosse <peter@vector35.com> | 2019-12-09 11:49:36 -0500 |
| commit | 4dbfe8a068d23babd50cd730edcc0862d85e1e8d (patch) | |
| tree | e691fc3098a7058fdb30ec12f2c6ef297d64ab30 /python | |
| parent | 80aab3efa1ffcf9c3727830cf21fd141df0f2c6d (diff) | |
Properly qualify log_error
Diffstat (limited to 'python')
| -rw-r--r-- | python/examples/snippets/__init__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/examples/snippets/__init__.py b/python/examples/snippets/__init__.py index 3463cee1..41cd076e 100644 --- a/python/examples/snippets/__init__.py +++ b/python/examples/snippets/__init__.py @@ -12,7 +12,7 @@ from PySide2.QtGui import (QFont, QFontMetrics, QDesktopServices, QKeySequence) from binaryninja import user_plugin_path from binaryninja.plugin import PluginCommand, MainThreadActionHandler from binaryninja.mainthread import execute_on_main_thread -from binaryninja.log import (log_info, log_warn, log_alert, log_debug) +from binaryninja.log import (log_error, log_info, log_warn, log_alert, log_debug) from binaryninjaui import (getMonospaceFont, UIAction, UIActionHandler, Menu) import numbers |
