# HG changeset patch # User Martin Geisler # Date 2010-06-15 09:05:17 # Node ID ad0a334eef163df857c36fdca2bd4daadba9df99 # Parent 18680b0e20a72421b75f2e8d6661c3327b17c504 p4: fix long line and bad spacing around % diff --git a/hgext/convert/p4.py b/hgext/convert/p4.py --- a/hgext/convert/p4.py +++ b/hgext/convert/p4.py @@ -148,7 +148,8 @@ class p4_source(converter_source): return self.heads def getfile(self, name, rev): - cmd = 'p4 -G print %s' % util.shellquote("%s#%s"%(self.depotname[name], rev)) + cmd = 'p4 -G print %s' \ + % util.shellquote("%s#%s" % (self.depotname[name], rev)) stdout = util.popen(cmd, mode='rb') mode = None