Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
willmcgugan committed Oct 10, 2020
1 parent f4b3c8a commit 6ce51f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rich/pager.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def show(self, content: str) -> None:
class SystemPager(Pager):
"""Uses the pager installed on the system."""

_pager = pydoc.pager
_pager = lambda self, content: pydoc.pager(content)

def show(self, content: str) -> None:
"""Use the same pager used by pydoc."""
Expand Down

0 comments on commit 6ce51f3

Please sign in to comment.