public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] portage r11238 - main/trunk/pym/portage
@ 2008-07-28 11:00 Zac Medico (zmedico)
  0 siblings, 0 replies; only message in thread
From: Zac Medico (zmedico) @ 2008-07-28 11:00 UTC (permalink / raw
  To: gentoo-commits

Author: zmedico
Date: 2008-07-28 11:00:42 +0000 (Mon, 28 Jul 2008)
New Revision: 11238

Modified:
   main/trunk/pym/portage/dep.py
Log:
Remove pointless generator expression.


Modified: main/trunk/pym/portage/dep.py
===================================================================
--- main/trunk/pym/portage/dep.py	2008-07-28 10:48:57 UTC (rev 11237)
+++ main/trunk/pym/portage/dep.py	2008-07-28 11:00:42 UTC (rev 11238)
@@ -396,7 +396,7 @@
 				break
 
 	def __str__(self):
-		return "[%s]" % (",".join(x for x in self.tokens),)
+		return "[%s]" % (",".join(self.tokens),)
 
 	def evaluate_conditionals(self, use):
 		"""




^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2008-07-28 11:00 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-07-28 11:00 [gentoo-commits] portage r11238 - main/trunk/pym/portage Zac Medico (zmedico)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox