1
0
Fork 0
mirror of https://github.com/borgbackup/borg.git synced 2025-01-01 04:37:34 +00:00

Merge pull request #3247 from ThomasWaldmann/fix-old-server-hack-1.1

remove evil trailing comma, fixes #3244 (1.1)
This commit is contained in:
TW 2017-11-04 13:44:26 +01:00 committed by GitHub
commit 299b9df057
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -603,7 +603,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: