diff --git a/src/borg/remote.py b/src/borg/remote.py index 861b6a1cd5..adb8c4a043 100644 --- a/src/borg/remote.py +++ b/src/borg/remote.py @@ -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