From d99598cc8335e90461ffcd49d5e6f1b4ac1ae269 Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 3 Dec 2024 23:06:00 +0100 Subject: [PATCH] remote.py: fix copy and paste error --- src/borg/remote.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/borg/remote.py b/src/borg/remote.py index 9a3ef70cfe..6197234eba 100644 --- a/src/borg/remote.py +++ b/src/borg/remote.py @@ -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