Skip to content

Commit

Permalink
remote.py: fix copy and paste error
Browse files Browse the repository at this point in the history
  • Loading branch information
ThomasWaldmann committed Dec 28, 2024
1 parent 64dcec3 commit d99598c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/borg/remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@ def query_size_limit(self):

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

Expand Down

0 comments on commit d99598c

Please sign in to comment.