mirror of
https://gerrit.googlesource.com/git-repo
synced 2025-07-04 20:17:16 +00:00
Compare commits
1 Commits
Author | SHA1 | Date | |
---|---|---|---|
02dbb6d120 |
@ -920,8 +920,11 @@ class Project(object):
|
||||
if out:
|
||||
out = iter(out[:-1].split('\0'))
|
||||
while out:
|
||||
info = out.next()
|
||||
path = out.next()
|
||||
try:
|
||||
info = out.next()
|
||||
path = out.next()
|
||||
except StopIteration:
|
||||
break
|
||||
|
||||
class _Info(object):
|
||||
def __init__(self, path, omode, nmode, oid, nid, state):
|
||||
|
Reference in New Issue
Block a user