Преглед изворни кода

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.

(cherry picked from commit 117d30d17126f2118e43dec2f08d502d3369f6c8)
Thomas Waldmann пре 7 година
родитељ
комит
a43e2c3043
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      src/borg/remote.py

+ 1 - 1
src/borg/remote.py

@@ -603,7 +603,7 @@ This problem will go away as soon as the server has been upgraded to 1.0.7+.
                     # 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: