# HG changeset patch # User Brendan Cully # Date 2007-06-18 03:09:35 # Node ID 64c415d2553ae5dc90b244f37ad6e5c3dad94ce8 # Parent 88fc92b0b8214aa677a40075d03df71bce7e21b2 patchbomb: fix PAGER buglet introduced in 88fc92b0b821 diff --git a/hgext/patchbomb.py b/hgext/patchbomb.py --- a/hgext/patchbomb.py +++ b/hgext/patchbomb.py @@ -383,7 +383,7 @@ def patchbomb(ui, repo, *revs, **opts): ui.status('Displaying ', m['Subject'], ' ...\n') ui.flush() if 'PAGER' in os.environ: - fp = os.popen(os['PAGER'], 'w') + fp = os.popen(os.environ['PAGER'], 'w') else: fp = ui try: