##// 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 431 files = []
432 432 for l in f.read().splitlines():
433 433 l.rstrip('\r\n');
434 if not quiet:
435 print l
434 ui.status("%s\n" % l)
436 435 if l[:14] == 'patching file ':
437 436 pf = l[14:]
438 437 if pf not in files:
General Comments 0
You need to be logged in to leave comments. Login now