From: <md...@us...> - 2007-12-10 15:34:35
|
Revision: 4685 http://matplotlib.svn.sourceforge.net/matplotlib/?rev=4685&view=rev Author: mdboom Date: 2007-12-10 07:34:29 -0800 (Mon, 10 Dec 2007) Log Message: ----------- Fix syntax for pre-Python 2.5 Modified Paths: -------------- trunk/matplotlib/lib/matplotlib/font_manager.py Modified: trunk/matplotlib/lib/matplotlib/font_manager.py =================================================================== --- trunk/matplotlib/lib/matplotlib/font_manager.py 2007-12-10 15:23:08 UTC (rev 4684) +++ trunk/matplotlib/lib/matplotlib/font_manager.py 2007-12-10 15:34:29 UTC (rev 4685) @@ -109,9 +109,10 @@ else: user = _winreg.OpenKey(_winreg.HKEY_CURRENT_USER, MSFolders) try: - return _winreg.QueryValueEx(user, 'Fonts')[0] - except OSError: - pass # Fall through to default + try: + return _winreg.QueryValueEx(user, 'Fonts')[0] + except OSError: + pass # Fall through to default finally: _winreg.CloseKey(user) return os.path.join(os.environ['WINDIR'], 'Fonts') This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |