ignore "Updated external to revision XXX" lines if they are the only ones present

This commit is contained in:
Josh Holtrop 2015-09-14 16:46:49 -04:00
parent 146bdc347b
commit a970a6ef8a

2
jsvn
View File

@ -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