Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 040571f

Browse files
authored
fix typo in _pyrepl.pager: plainpager -> plain_pager (#118675)
1 parent 5a9eeaf commit 040571f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/_pyrepl/pager.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def get_pager() -> Pager:
2323
if not sys.stdin.isatty() or not sys.stdout.isatty():
2424
return plain_pager
2525
if sys.platform == "emscripten":
26-
return plainpager
26+
return plain_pager
2727
use_pager = os.environ.get('MANPAGER') or os.environ.get('PAGER')
2828
if use_pager:
2929
if sys.platform == 'win32': # pipes completely broken in Windows

0 commit comments

Comments
 (0)