From 8c9c37693af29f816df13529fb2f7a3f97c0929d 2014-12-10 20:54:01 From: Scott Sanderson Date: 2014-12-10 20:54:01 Subject: [PATCH] BUG: Fix incorrect argument signature for show_in_pager dummy hook. --- diff --git a/IPython/core/hooks.py b/IPython/core/hooks.py index acbfaa4..79503de 100644 --- a/IPython/core/hooks.py +++ b/IPython/core/hooks.py @@ -173,7 +173,7 @@ def late_startup_hook(self): #print "default startup hook ok" # dbg -def show_in_pager(self,s): +def show_in_pager(self, data, start, screen_lines): """ Run a string through pager """ # raising TryNext here will use the default paging functionality raise TryNext