changeset 17930:7788b5e7d9ef

convert: fix a too-long line nag
author Bryan O'Sullivan <bryano@fb.com>
date Tue, 13 Nov 2012 13:09:42 -0800
parents 0eed66327ad4
children c8ffde272653
files hgext/convert/git.py
diffstat 1 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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))