Skip to content

Commit d47b6d0

Browse files
committed
Fix copypasta in error message.
1 parent 22a29f0 commit d47b6d0

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python/collaboration/file.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -466,7 +466,7 @@ def push(self, bv_or_db: Union['BinaryView', 'Database'], progress: 'util.Progre
466466
"""
467467
if isinstance(bv_or_db, BinaryView):
468468
if not bv_or_db.file.has_database:
469-
raise RuntimeError("Cannot pull non-database view")
469+
raise RuntimeError("Cannot push non-database view")
470470
db = bv_or_db.file.database
471471
else:
472472
db = bv_or_db

0 commit comments

Comments
 (0)