From 964a8ed74c3a8b5bce89499529cc2f0e3a415189 2011-04-07 23:38:14 From: Thomas Kluyver Date: 2011-04-07 23:38:14 Subject: [PATCH] Fix my own daft mistake in previous commit. --- diff --git a/IPython/core/magic.py b/IPython/core/magic.py index ce0ba05..aad591c 100644 --- a/IPython/core/magic.py +++ b/IPython/core/magic.py @@ -991,7 +991,7 @@ Currently the magic system has the following functions:\n""" In [1]: 'a' in _ip.user_ns Out[1]: False """ - opts, args = self.parse_options(parameter_s,'sh') + opts, args = self.parse_options(parameter_s,'sf') if 'f' in opts: ans = True else: