diff options
Diffstat (limited to 'python/update.py')
| -rw-r--r-- | python/update.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/update.py b/python/update.py index 5f3b55df..33323546 100644 --- a/python/update.py +++ b/python/update.py @@ -25,7 +25,7 @@ import ctypes import binaryninja from . import _binaryninjacore as core from .enums import UpdateResult -from . import log +from .log import log_error @@ -78,7 +78,7 @@ class UpdateProgressCallback: return self.func(progress, total) return True except: - log.log_error(traceback.format_exc()) + log_error(traceback.format_exc()) @property def active(cls): |
