From a970a6ef8a0a7455b9f1859a96799741df659832 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 14 Sep 2015 16:46:49 -0400 Subject: [PATCH] ignore "Updated external to revision XXX" lines if they are the only ones present --- jsvn | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsvn b/jsvn index cf38924..6f94a30 100755 --- a/jsvn +++ b/jsvn @@ -402,7 +402,7 @@ def filter_update(pout, out): continue if re.match(r'\s*$', line): continue - if re.match(r'External at revision ', line): + if re.match(r'(External at|Updated external to) revision ', line): if external_printed: out.write(line) continue