From 13c81858e1e29ee3a089017789391a423ec24dba 2011-11-30 22:58:36 From: MinRK Date: 2011-11-30 22:58:36 Subject: [PATCH] remove erroneous trailing comma in lib.pretty c/o @kcarnold closes #1074 --- diff --git a/IPython/lib/pretty.py b/IPython/lib/pretty.py index 4361f21..f6f109c 100644 --- a/IPython/lib/pretty.py +++ b/IPython/lib/pretty.py @@ -668,7 +668,7 @@ _type_pprinters = { try: _type_pprinters[types.DictProxyType] = _dict_pprinter_factory('') - _type_pprinters[types.ClassType] = _type_pprint, + _type_pprinters[types.ClassType] = _type_pprint except AttributeError: # Python 3 pass