* [gentoo-commits] portage r14465 - main/trunk/pym/_emerge
@ 2009-09-29 23:25 Arfrever Frehtes Taifersar Arahesis (arfrever)
0 siblings, 0 replies; only message in thread
From: Arfrever Frehtes Taifersar Arahesis (arfrever) @ 2009-09-29 23:25 UTC (permalink / raw
To: gentoo-commits
Author: arfrever
Date: 2009-09-29 23:25:19 +0000 (Tue, 29 Sep 2009)
New Revision: 14465
Modified:
main/trunk/pym/_emerge/Package.py
Log:
Fix SyntaxError with Python 3 added in r14462.
Modified: main/trunk/pym/_emerge/Package.py
===================================================================
--- main/trunk/pym/_emerge/Package.py 2009-09-29 20:29:30 UTC (rev 14464)
+++ main/trunk/pym/_emerge/Package.py 2009-09-29 23:25:19 UTC (rev 14465)
@@ -211,7 +211,7 @@
elif k in self._use_conditional_keys:
try:
use_reduce(paren_reduce(v), matchall=1)
- except portage.exception.InvalidDependString, e:
+ except portage.exception.InvalidDependString as e:
self._pkg._invalid_metadata(k + ".syntax", "%s: %s" % (k, e))
def _set_inherited(self, k, v):
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2009-09-29 23:25 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-29 23:25 [gentoo-commits] portage r14465 - main/trunk/pym/_emerge Arfrever Frehtes Taifersar Arahesis (arfrever)
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox