From 19a7afe759414657d4ff0d752a43062dad5a8061 2006-11-29 09:44:32 From: vivainio Date: 2006-11-29 09:44:32 Subject: [PATCH] Correct syntax error in prev patch --- diff --git a/IPython/Debugger.py b/IPython/Debugger.py index 12d4613..913762c 100644 --- a/IPython/Debugger.py +++ b/IPython/Debugger.py @@ -15,7 +15,7 @@ details on the PSF (Python Software Foundation) standard license, see: http://www.python.org/2.2.3/license.html -$Id: Debugger.py 1954 2006-11-29 09:39:44Z vivainio $""" +$Id: Debugger.py 1955 2006-11-29 09:44:32Z vivainio $""" #***************************************************************************** # @@ -55,8 +55,8 @@ try: has_pydb = True from pydb import Pdb as OldPdb prompt = 'ipydb>' - except ImportError: - pass +except ImportError: + pass if has_pydb: from pydb import Pdb as OldPdb diff --git a/IPython/Release.py b/IPython/Release.py index e5d5a7e..eb25b64 100644 --- a/IPython/Release.py +++ b/IPython/Release.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """Release data for the IPython project. -$Id: Release.py 1954 2006-11-29 09:39:44Z vivainio $""" +$Id: Release.py 1955 2006-11-29 09:44:32Z vivainio $""" #***************************************************************************** # Copyright (C) 2001-2006 Fernando Perez @@ -22,7 +22,7 @@ name = 'ipython' # because bdist_rpm does not accept dashes (an RPM) convention, and # bdist_deb does not accept underscores (a Debian convention). -revision = '1953' +revision = '1954' #version = '0.7.3.svn'