summaryrefslogtreecommitdiff
path: root/python/enterprise.py
diff options
context:
space:
mode:
authorKyleMiles <krm504@nyu.edu>2023-06-29 20:49:26 -0400
committerKyleMiles <krm504@nyu.edu>2023-07-10 12:58:24 -0400
commit04bc6f11ae0289aae57d63d4cd32f4ef305d1a7a (patch)
tree46f06280b13fb80f2aebf0eea9b52f884e698d0c /python/enterprise.py
parent7598688466960427890036590239565364310171 (diff)
Move binary view loading in to the core; deprecate open_view in favor of load; update examples
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 915f6c30..d398bdf9 100644
--- a/python/enterprise.py
+++ b/python/enterprise.py
@@ -325,7 +325,7 @@ class LicenseCheckout:
>>> enterprise.authenticate_with_credentials("username", "password")
>>> with enterprise.LicenseCheckout():
... # Do some operation
- ... with open_view("/bin/ls") as bv: # e.g.
+ ... with load("/bin/ls") as bv: # e.g.
... print(hex(bv.start))
# License is released at end of scope
"""