From 590b594850ccd15b9e2cb2b0e8f3050d782647b3 Mon Sep 17 00:00:00 2001 From: Alexander Taylor Date: Tue, 3 Sep 2024 17:19:13 -0400 Subject: Ultimate. --- python/enterprise.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'python/enterprise.py') 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: -- cgit v1.3.1