Skip to content

Commit d99598c

Browse files
remote.py: fix copy and paste error
1 parent 64dcec3 commit d99598c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/borg/remote.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1180,7 +1180,7 @@ def query_size_limit(self):
11801180

11811181
def prefixed_key(self, key, complete):
11821182
# just prefix another byte telling whether this key refers to a complete chunk
1183-
# or a without-data-metadata-only chunk (see, raise_missing=True also read_data param).
1183+
# or a without-data-metadata-only chunk (see also read_data param).
11841184
prefix = b"\x01" if complete else b"\x00"
11851185
return prefix + key
11861186

0 commit comments

Comments
 (0)