|
From: <md...@us...> - 2009-03-04 13:25:46
|
Revision: 6952
http://matplotlib.svn.sourceforge.net/matplotlib/?rev=6952&view=rev
Author: mdboom
Date: 2009-03-04 13:25:41 +0000 (Wed, 04 Mar 2009)
Log Message:
-----------
Fix for Python 2.4 compatibility.
Modified Paths:
--------------
branches/v0_98_5_maint/lib/matplotlib/sphinxext/plot_directive.py
Modified: branches/v0_98_5_maint/lib/matplotlib/sphinxext/plot_directive.py
===================================================================
--- branches/v0_98_5_maint/lib/matplotlib/sphinxext/plot_directive.py 2009-03-03 22:08:38 UTC (rev 6951)
+++ branches/v0_98_5_maint/lib/matplotlib/sphinxext/plot_directive.py 2009-03-04 13:25:41 UTC (rev 6952)
@@ -136,8 +136,6 @@
try:
fd = open(fname)
module = imp.load_module("__main__", fd, fname, ('py', 'r', imp.PY_SOURCE))
- except:
- raise
finally:
del sys.path[0]
os.chdir(pwd)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|