mercurial/httppeer.py
changeset 27637 b502138f5faa
parent 26587 56b2bcea2529
child 28483 6f38ec428a19
equal deleted inserted replaced
27636:21b363bd87dc 27637:b502138f5faa
   252             if fh is not None:
   252             if fh is not None:
   253                 fh.close()
   253                 fh.close()
   254                 os.unlink(filename)
   254                 os.unlink(filename)
   255 
   255 
   256     def _callcompressable(self, cmd, **args):
   256     def _callcompressable(self, cmd, **args):
   257         stream =  self._callstream(cmd, **args)
   257         stream = self._callstream(cmd, **args)
   258         return util.chunkbuffer(zgenerator(stream))
   258         return util.chunkbuffer(zgenerator(stream))
   259 
   259 
   260     def _abort(self, exception):
   260     def _abort(self, exception):
   261         raise exception
   261         raise exception
   262 
   262