diff options
| author | Alexander Taylor <alex@vector35.com> | 2026-03-20 15:34:20 -0400 |
|---|---|---|
| committer | Alexander Taylor <alex@vector35.com> | 2026-03-20 15:34:20 -0400 |
| commit | d47b6d066fb8ff1f6ca688f3d590ad5f8237d59d (patch) | |
| tree | c7256090a65ada85fa8db1058b724bdebe22d6d5 /python/collaboration/file.py | |
| parent | 22a29f05cf59645a589f63a70269205bb6e9fa83 (diff) | |
Fix copypasta in error message.
Diffstat (limited to 'python/collaboration/file.py')
| -rw-r--r-- | python/collaboration/file.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/collaboration/file.py b/python/collaboration/file.py index ab566c84..e1c448a9 100644 --- a/python/collaboration/file.py +++ b/python/collaboration/file.py @@ -466,7 +466,7 @@ class RemoteFile: """ if isinstance(bv_or_db, BinaryView): if not bv_or_db.file.has_database: - raise RuntimeError("Cannot pull non-database view") + raise RuntimeError("Cannot push non-database view") db = bv_or_db.file.database else: db = bv_or_db |
