hgext/remotefilelog/fileserverclient.py
changeset 41759 aaad36b88298
parent 40851 74e3df766052
child 42036 0129bf02fa04
--- a/hgext/remotefilelog/fileserverclient.py	Sun Jan 13 20:13:22 2019 -0500
+++ b/hgext/remotefilelog/fileserverclient.py	Wed Feb 20 19:28:51 2019 -0500
@@ -138,8 +138,8 @@
     def connect(self, cachecommand):
         if self.pipeo:
             raise error.Abort(_("cache connection already open"))
-        self.pipei, self.pipeo, self.pipee, self.subprocess = \
-            procutil.popen4(cachecommand)
+        self.pipei, self.pipeo, self.pipee, self.subprocess = (
+            procutil.popen4(cachecommand))
         self.connected = True
 
     def close(self):