summaryrefslogtreecommitdiffstats
path: root/pym/cache
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2007-03-01 23:31:46 +0000
committerZac Medico <zmedico@gentoo.org>2007-03-01 23:31:46 +0000
commitb759b843bf01e80df2d1b36326c5bfd15299d7d5 (patch)
treed018de4585c6bb4801dc464bbd8e72211b185443 /pym/cache
parentf9a963411157611a8486f6e260448c77122b78be (diff)
downloadportage-b759b843bf01e80df2d1b36326c5bfd15299d7d5.tar.gz
portage-b759b843bf01e80df2d1b36326c5bfd15299d7d5.tar.bz2
portage-b759b843bf01e80df2d1b36326c5bfd15299d7d5.zip
Fix the rest of the broken except statement syntax. (trunk r6120:6121)
svn path=/main/branches/2.1.2/; revision=6122
Diffstat (limited to 'pym/cache')
-rw-r--r--pym/cache/fs_template.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pym/cache/fs_template.py b/pym/cache/fs_template.py
index b76e98bd3..9741ecbcc 100644
--- a/pym/cache/fs_template.py
+++ b/pym/cache/fs_template.py
@@ -39,7 +39,7 @@ class FsBased(template.database):
if mtime:
mtime=long(mtime)
os.utime(path, (mtime, mtime))
- except OSError, IOError:
+ except (OSError, IOError):
return False
return True