diff --git a/IPython/external/decorator/_decorator.py b/IPython/external/decorator/_decorator.py index 9215aba..ef56922 100644 --- a/IPython/external/decorator/_decorator.py +++ b/IPython/external/decorator/_decorator.py @@ -142,7 +142,7 @@ class FunctionMaker(object): func.__defaults__ = getattr(self, 'defaults', ()) func.__kwdefaults__ = getattr(self, 'kwonlydefaults', None) func.__annotations__ = getattr(self, 'annotations', None) - # FIXED: The following is try/execpted in IPython to work + # FIXED: The following is try/excepted in IPython to work # with IronPython. try: callermodule = sys._getframe(3).f_globals.get('__name__', '?')