diff -r 15d3facfa40a -r aaad36b88298 hgext/remotefilelog/fileserverclient.py --- 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):