summaryrefslogtreecommitdiff
path: root/python/enterprise.py
diff options
context:
space:
mode:
authorAlexander Taylor <alex@vector35.com>2023-09-05 16:23:46 -0400
committerPeter LaFosse <peter@vector35.com>2023-09-11 09:55:45 -0400
commit8bdbbee31eda424f363d5f0ff1a0dfd5444cf477 (patch)
tree6a33519f08fcc3010f7ac5ea976d70c1ec87b58e /python/enterprise.py
parentd81e81d4efc8d1ce1d238f8b3c3dd46948b9abef (diff)
Stop using now-deprecated Enterprise function.
Diffstat (limited to 'python/enterprise.py')
-rw-r--r--python/enterprise.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/enterprise.py b/python/enterprise.py
index d398bdf9..636b9023 100644
--- a/python/enterprise.py
+++ b/python/enterprise.py
@@ -377,7 +377,7 @@ class LicenseCheckout:
# Keychain auth can activate a license if we have one in the keychain
# If we have an expired named license, try to get a fresh floating one
if not is_license_still_activated() or (not is_floating_license() and binaryninja.core_expires() < gmtime()):
- acquire_license(self.desired_duration)
+ update_license(self.desired_duration)
self.acquired_license = True
def __exit__(self, exc_type, exc_val, exc_tb):