# HG changeset patch # User Patrick Mezard # Date 1232590232 21600 # Node ID 68e506bc3a43cebe7a86645c98123820a08ea671 # Parent 6266ba36ee150a4968347031552cf303b31f1032 fetch_command: fix file exclusion in very stupid mode diff --git a/fetch_command.py b/fetch_command.py --- a/fetch_command.py +++ b/fetch_command.py @@ -497,7 +497,7 @@ def stupid_fetch_branchrev(svn, hg_edito for path, e in r.paths.iteritems(): if not path.startswith(branchprefix): continue - if not hg_editor._is_path_valid(branchprefix + path): + if not hg_editor._is_path_valid(path): continue kind = svn.checkpath(path, r.revnum) path = path[len(branchprefix):]