Mercurial > evolve
comparison hgext/evolve.py @ 898:934b6f0feffd
evolve: small white space change
author | Olle Lundberg <geek@nerd.sh> |
---|---|
date | Sat, 12 Apr 2014 23:16:02 +0200 |
parents | b5227608d9dd |
children | 98b5ac44a259 |
comparison
equal
deleted
inserted
replaced
897:b5227608d9dd | 898:934b6f0feffd |
---|---|
2350 if util.safehasattr(self, '_callcompressable'): | 2350 if util.safehasattr(self, '_callcompressable'): |
2351 f = self._callcompressable("evoext_pullobsmarkers_0", **opts) | 2351 f = self._callcompressable("evoext_pullobsmarkers_0", **opts) |
2352 else: | 2352 else: |
2353 f = self._callstream("evoext_pullobsmarkers_0", **opts) | 2353 f = self._callstream("evoext_pullobsmarkers_0", **opts) |
2354 f = self._decompress(f) | 2354 f = self._decompress(f) |
2355 length= int(f.read(20)) | 2355 length = int(f.read(20)) |
2356 chunk = 4096 | 2356 chunk = 4096 |
2357 current = 0 | 2357 current = 0 |
2358 data = StringIO() | 2358 data = StringIO() |
2359 ui = self.ui | 2359 ui = self.ui |
2360 ui.progress('OBSEXC', current, unit="bytes", total=length) | 2360 ui.progress('OBSEXC', current, unit="bytes", total=length) |