mercurial/bundle2.py
changeset 41759 aaad36b88298
parent 40429 14b6afc6cb28
child 41792 2d835c42ab41
--- a/mercurial/bundle2.py	Sun Jan 13 20:13:22 2019 -0500
+++ b/mercurial/bundle2.py	Wed Feb 20 19:28:51 2019 -0500
@@ -1397,8 +1397,8 @@
             assert chunknum == 0, 'Must start with chunk 0'
             self._chunkindex.append((0, self._tellfp()))
         else:
-            assert chunknum < len(self._chunkindex), \
-                   'Unknown chunk %d' % chunknum
+            assert chunknum < len(self._chunkindex), (
+                   'Unknown chunk %d' % chunknum)
             self._seekfp(self._chunkindex[chunknum][1])
 
         pos = self._chunkindex[chunknum][0]