##// END OF EJS Templates
patchbomb: fix PAGER buglet introduced in 88fc92b0b821
Brendan Cully -
r4600:64c415d2 default
parent child Browse files
Show More
@@ -383,7 +383,7 b' def patchbomb(ui, repo, *revs, **opts):'
383 383 ui.status('Displaying ', m['Subject'], ' ...\n')
384 384 ui.flush()
385 385 if 'PAGER' in os.environ:
386 fp = os.popen(os['PAGER'], 'w')
386 fp = os.popen(os.environ['PAGER'], 'w')
387 387 else:
388 388 fp = ui
389 389 try:
General Comments 0
You need to be logged in to leave comments. Login now