commit | 01f443d75a8116aaca5612ee44cceb1ff1a18f2f | [log] [tgz] |
---|---|---|
author | David Pursehouse <david.pursehouse@sonymobile.com> | Wed Oct 03 19:11:28 2012 +0900 |
committer | Gustaf Lundh <gustaf.lundh@sonymobile.com> | Thu Oct 04 10:31:09 2012 +0200 |
tree | 02f8bc525cfa95d1fae0fd106278f3bf24d87896 | |
parent | b926116a1483d04df99252ed02418bf8e58094a3 [diff] |
Correct call to `sys.exit()` It should be `sys.exit()` not `os.exit()`. Change-Id: Iaeeef456ddf2d17f5df2b712e50e3630bed856c3
diff --git a/pager.py b/pager.py index 714c3db..7086aef 100755 --- a/pager.py +++ b/pager.py
@@ -50,7 +50,7 @@ _BecomePager(pager) except Exception: print >>sys.stderr, "fatal: cannot start pager '%s'" % pager - os.exit(255) + sys.exit(255) def _SelectPager(globalConfig): try: