##// END OF EJS Templates
cg1packer: fix `compressed` method...
Stanislau Hlebik -
r30589:182cacaa default
parent child Browse files
Show More
@@ -154,7 +154,7 b' class cg1unpacker(object):'
154 # These methods (compressed, read, seek, tell) all appear to only
154 # These methods (compressed, read, seek, tell) all appear to only
155 # be used by bundlerepo, but it's a little hard to tell.
155 # be used by bundlerepo, but it's a little hard to tell.
156 def compressed(self):
156 def compressed(self):
157 return self._type is not None
157 return self._type is not None and self._type != 'UN'
158 def read(self, l):
158 def read(self, l):
159 return self._stream.read(l)
159 return self._stream.read(l)
160 def seek(self, pos):
160 def seek(self, pos):
General Comments 0
You need to be logged in to leave comments. Login now