changeset 955:c809d9bf42f3

replay: remove useless warning about invalid externals The warning is wrong when a filemap is used, and if we expect the externals to be filtered already, let's make this abort instead of warning.
author Patrick Mezard <patrick@mezard.eu>
date Sun, 07 Oct 2012 21:06:25 +0200
parents 1f77bd6ec0e5
children 24fbba02cb8f
files hgsubversion/replay.py
diffstat 1 files changed, 0 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/hgsubversion/replay.py
+++ b/hgsubversion/replay.py
@@ -30,7 +30,6 @@ def updateexternals(ui, meta, current):
     branches = {}
     for path, entry in current.externals.iteritems():
         if not meta.is_path_valid(path):
-            ui.warn('WARNING: Invalid path %s in externals\n' % path)
             continue
 
         p, b, bp = meta.split_branch_path(path)