From 1a09bd6ecec98c37696032281cec818d3dfdaadc 2007-04-26 20:16:17 From: walter.doerwald Date: 2007-04-26 20:16:17 Subject: [PATCH] Fix bug that surfaced when the igrid input raised an exception. --- diff --git a/IPython/Extensions/igrid.py b/IPython/Extensions/igrid.py index ca0f180..fdc5ea7 100644 --- a/IPython/Extensions/igrid.py +++ b/IPython/Extensions/igrid.py @@ -176,7 +176,7 @@ class IGridTable(wx.grid.PyGridTableBase): raise except Exception, exc: have += 1 - self._append(item) + self._append(exc) self.iterator = None break else: diff --git a/doc/ChangeLog b/doc/ChangeLog index c97ea0b..2fa0dc0 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,9 @@ +2007-04-26 Walter Doerwald + + * IPython/Extensions/igrid.py: (igrid) Fix bug that surfaced + when the igrid input raised an exception. (Patch by Nik Tautenhahn, + bug discovered by Ville). + 2007-04-26 Ville Vainio * Extensions/ipy_completers.py: Olivier's module completer now