##// END OF EJS Templates
hg import checking for quiet mode didn't work. Fixed using the ui module....
Thomas Arendsen Hein -
r481:2705d20f default
parent child Browse files
Show More
@@ -431,8 +431,7 b' def import_(ui, repo, patch1, *patches, '
431 files = []
431 files = []
432 for l in f.read().splitlines():
432 for l in f.read().splitlines():
433 l.rstrip('\r\n');
433 l.rstrip('\r\n');
434 if not quiet:
434 ui.status("%s\n" % l)
435 print l
436 if l[:14] == 'patching file ':
435 if l[:14] == 'patching file ':
437 pf = l[14:]
436 pf = l[14:]
438 if pf not in files:
437 if pf not in files:
General Comments 0
You need to be logged in to leave comments. Login now