summaryrefslogtreecommitdiff
path: root/python/enterprise.py
diff options
context:
space:
mode:
authorAlexander Taylor <alex@vector35.com>2024-09-03 17:19:13 -0400
committerAlexander Taylor <alex@vector35.com>2024-09-13 10:52:48 -0400
commit590b594850ccd15b9e2cb2b0e8f3050d782647b3 (patch)
tree7d204faf40705c4f99918ecb7fca901dae0282c1 /python/enterprise.py
parente610029c1425fdb791b3570a4397dffcad420111 (diff)
Ultimate.
Diffstat (limited to 'python/enterprise.py')
-rw-r--r--python/enterprise.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/python/enterprise.py b/python/enterprise.py
index 65fd31be..03846a17 100644
--- a/python/enterprise.py
+++ b/python/enterprise.py
@@ -1,5 +1,5 @@
"""
-.. note: This module is only available in the Enterprise edition of Binary Ninja.
+.. note: This module is only available in the Ultimate edition of Binary Ninja.
"""
import ctypes
@@ -13,9 +13,9 @@ import binaryninja
from . import decorators
from . import deprecation
-if core.BNGetProduct() != "Binary Ninja Enterprise Client":
+if core.BNGetProduct() != "Binary Ninja Enterprise Client" and core.BNGetProduct() != "Binary Ninja Ultimate":
# None of these functions exist on other builds, so just raise here to notify anyone who tries to use this
- raise RuntimeError("Cannot use Binary Ninja Enterprise client functionality with a non-Enterprise client.")
+ raise RuntimeError("Binary Ninja Enterprise client functionality requires the Binary Ninja Ultimate edition.")
def is_initialized() -> bool: