From 6bafd715ced5d904011b231b6bd8d3450342d4f9 2013-06-25 21:44:24 From: MinRK Date: 2013-06-25 21:44:24 Subject: [PATCH] fix `%magic` output call lsmagic without underscore closes #3467 --- diff --git a/IPython/core/magics/basic.py b/IPython/core/magics/basic.py index d803ea7..978a08d 100644 --- a/IPython/core/magics/basic.py +++ b/IPython/core/magics/basic.py @@ -271,7 +271,7 @@ of any of them, type %magic_name?, e.g. '%cd?'. Currently the magic system has the following functions:""", magic_docs, "Summary of magic functions (from %slsmagic):" % magic_escapes['line'], - self._lsmagic(), + str(self.lsmagic()), ] page.page('\n'.join(out))