Mercurial > hgsubversion
changeset 1241:eecfbd1fac0a
stupid: in fetch_branchrev, use compat hack for filectxfn for deleted files
author | Siddharth Agarwal <sid0@fb.com> |
---|---|
date | Tue, 16 Sep 2014 16:16:26 -0700 |
parents | 57000c9b53f1 |
children | df6cb54604eb |
files | hgsubversion/stupid.py |
diffstat | 1 files changed, 4 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/hgsubversion/stupid.py +++ b/hgsubversion/stupid.py @@ -571,7 +571,10 @@ def fetch_branchrev(svn, meta, branch, b svnpath = path if branchpath: svnpath = branchpath + '/' + path - data, mode = svn.get_file(svnpath, r.revnum) + try: + data, mode = svn.get_file(svnpath, r.revnum) + except IOError: + return compathacks.filectxfn_deleted_reraise(memctx) isexec = 'x' in mode islink = 'l' in mode copied = copies.get(path)