summaryrefslogtreecommitdiff
path: root/python/database.py
diff options
context:
space:
mode:
authorJordan Wiens <jordan@psifertex.com>2022-03-14 12:47:56 -0400
committerJordan Wiens <jordan@psifertex.com>2022-03-14 12:47:56 -0400
commit2da52de594c47ba5427806a98d70ebaf09216a33 (patch)
treef9c74e5a49da7ce698c1bb574419a44306171406 /python/database.py
parent4c88144acfbb58e29742e27949e5b02ef4c4108e (diff)
fix typo in remove_snapshot api
Diffstat (limited to 'python/database.py')
-rw-r--r--python/database.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python/database.py b/python/database.py
index b9b81058..84d5979b 100644
--- a/python/database.py
+++ b/python/database.py
@@ -279,7 +279,7 @@ class Database:
def current_snapshot(self, value: Snapshot):
core.BNSetDatabaseCurrentSnapshot(self.handle, value.id)
- def remove_snapsot(self, id: int):
+ def remove_snapshot(self, id: int):
"""Remove a snapshot in the database by id"""
core.BNRemoveDatabaseSnapshot(self.handle, id)