convert: fix a too-long line nag
authorBryan O'Sullivan <bryano@fb.com>
Tue, 13 Nov 2012 13:09:42 -0800
changeset 17930 7788b5e7d9ef
parent 17929 0eed66327ad4
child 17932 c8ffde272653
convert: fix a too-long line nag
hgext/convert/git.py
--- a/hgext/convert/git.py	Mon Oct 29 17:40:13 2012 -0700
+++ b/hgext/convert/git.py	Tue Nov 13 13:09:42 2012 -0800
@@ -124,7 +124,8 @@
     def retrievegitmodules(self, version):
         modules, ret = self.gitread("git show %s:%s" % (version, '.gitmodules'))
         if ret:
-            raise util.Abort(_('cannot read submodules config file in %s') % version)
+            raise util.Abort(_('cannot read submodules config file in %s') %
+                             version)
         self.parsegitmodules(modules)
         for m in self.submodules:
             node, ret = self.gitread("git rev-parse %s:%s" % (version, m.path))