diff options
-rw-r--r-- | project.py | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -920,8 +920,11 @@ class Project(object): | |||
920 | if out: | 920 | if out: |
921 | out = iter(out[:-1].split('\0')) | 921 | out = iter(out[:-1].split('\0')) |
922 | while out: | 922 | while out: |
923 | info = out.next() | 923 | try: |
924 | path = out.next() | 924 | info = out.next() |
925 | path = out.next() | ||
926 | except StopIteration: | ||
927 | break | ||
925 | 928 | ||
926 | class _Info(object): | 929 | class _Info(object): |
927 | def __init__(self, path, omode, nmode, oid, nid, state): | 930 | def __init__(self, path, omode, nmode, oid, nid, state): |