changeset 18300 | 745bc16ccef2 |
parent 18299 | a7a88a458a4c |
child 18490 | 877f80599df0 |
--- a/hgext/largefiles/lfutil.py Fri Jan 11 16:30:29 2013 +0100 +++ b/hgext/largefiles/lfutil.py Fri Jan 11 16:30:29 2013 +0100 @@ -421,7 +421,11 @@ matcher = getstandinmatcher(repo) for standin in repo.dirstate.walk(matcher, [], False, False): lfile = splitstandin(standin) - standins.append((lfile, readstandin(repo, lfile))) + try: + hash = readstandin(repo, lfile) + except IOError: + hash = None + standins.append((lfile, hash)) return standins def getlfilestoupdate(oldstandins, newstandins):