mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-20 21:27:32 +00:00
remove evil trailing comma, fixes #3244
value type of compatMap is a tuple of strings. due to the trailing comma, this was a 1-tuple of a tuple of strings.
This commit is contained in:
parent
b148a366fe
commit
117d30d171
1 changed files with 1 additions and 1 deletions
|
@ -596,7 +596,7 @@ def do_open():
|
|||
# emit this msg in the same way as the 'Remote: ...' lines that show the remote TypeError
|
||||
sys.stderr.write(msg)
|
||||
self.server_version = parse_version('1.0.6')
|
||||
compatMap['open'] = ('path', 'create', 'lock_wait', 'lock', ),
|
||||
compatMap['open'] = ('path', 'create', 'lock_wait', 'lock', )
|
||||
# try again with corrected version and compatMap
|
||||
do_open()
|
||||
except Exception:
|
||||
|
|
Loading…
Reference in a new issue