summaryrefslogtreecommitdiff
path: root/python/__init__.py
diff options
context:
space:
mode:
authorGlenn Smith <glenn@vector35.com>2021-12-08 18:01:50 -0500
committerGlenn Smith <glenn@vector35.com>2021-12-08 18:55:33 -0500
commit273b30abc8782767d4d94938dcda61b87e8efc83 (patch)
tree90bc549a435aad9d87f0676299d6f02c236ff5ff /python/__init__.py
parent645e0c51e6293874acda429dc5e278b185704d9b (diff)
[Enterprise] "Remember me" option in api
Diffstat (limited to 'python/__init__.py')
-rw-r--r--python/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/__init__.py b/python/__init__.py
index 1cf00773..12cb7033 100644
--- a/python/__init__.py
+++ b/python/__init__.py
@@ -129,7 +129,7 @@ def _init_plugins():
if not core_ui_enabled() and core.BNGetProduct() == "Binary Ninja Enterprise Client":
# Enterprise client needs to checkout a license reservation or else BNInitPlugins will fail
- if not core.BNAuthenticateEnterpriseServerWithMethod("Keychain") and (not core.BNIsLicenseValidated() or not enterprise.is_license_still_activated()):
+ if not enterprise.authenticate_with_method("Keychain") and (not core.BNIsLicenseValidated() or not enterprise.is_license_still_activated()):
raise RuntimeError(
"To use Binary Ninja Enterprise from a headless python script, you must check out a license first.\n"
"You can either check out a license for an extended time with the UI, or use the binaryninja.enterprise module.")