hgext/gpg.py
branchstable
changeset 43346 6ada8a274b9c
parent 43117 8ff1ecfadcd1
child 43506 9f70512ae2cf
--- a/hgext/gpg.py	Sun Oct 27 20:16:59 2019 +0100
+++ b/hgext/gpg.py	Tue Oct 29 10:41:30 2019 +0100
@@ -76,10 +76,9 @@
             fp = os.fdopen(fd, r'wb')
             fp.write(data)
             fp.close()
-            gpgcmd = b"%s --logger-fd 1 --status-fd 1 --verify \"%s\" \"%s\"" % (
-                self.path,
-                sigfile,
-                datafile,
+            gpgcmd = (
+                b"%s --logger-fd 1 --status-fd 1 --verify \"%s\" \"%s\""
+                % (self.path, sigfile, datafile,)
             )
             ret = procutil.filter(b"", gpgcmd)
         finally: