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 3, 2024
1 parent 5eb1fce commit b0b3455
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 @@ -1175,7 +1175,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 b0b3455

Please sign in to comment.