From c6b0424145bcbe5d10a6a40da47e4e4c84b943bb 2014-04-15 01:07:40 From: Thomas Kluyver Date: 2014-04-15 01:07:40 Subject: [PATCH] Fix typo in storemagic module docstring Closes gh-5611 --- diff --git a/IPython/extensions/storemagic.py b/IPython/extensions/storemagic.py index b07c8c3..edf3a5c 100644 --- a/IPython/extensions/storemagic.py +++ b/IPython/extensions/storemagic.py @@ -7,7 +7,7 @@ Stores variables, aliases and macros in IPython's database. To automatically restore stored variables at startup, add this to your :file:`ipython_config.py` file:: - c.StoreMagic.autorestore = True + c.StoreMagics.autorestore = True """ from __future__ import print_function #-----------------------------------------------------------------------------