Show More
@@ -411,7 +411,7 b' class basicstore(object):' | |||
|
411 | 411 | def join(self, f): |
|
412 | 412 | return self.path + b'/' + encodedir(f) |
|
413 | 413 | |
|
414 |
def _walk(self, relpath, recurse |
|
|
414 | def _walk(self, relpath, recurse): | |
|
415 | 415 | '''yields (unencoded, encoded, size)''' |
|
416 | 416 | path = self.path |
|
417 | 417 | if relpath: |
@@ -425,7 +425,7 b' class basicstore(object):' | |||
|
425 | 425 | p = visit.pop() |
|
426 | 426 | for f, kind, st in readdir(p, stat=True): |
|
427 | 427 | fp = p + b'/' + f |
|
428 |
if |
|
|
428 | if isrevlog(f, kind, st): | |
|
429 | 429 | n = util.pconvert(fp[striplen:]) |
|
430 | 430 | l.append((decodedir(n), n, st.st_size)) |
|
431 | 431 | elif kind == stat.S_IFDIR and recurse: |
General Comments 0
You need to be logged in to leave comments.
Login now