From: Zac Medico Date: Mon, 28 Apr 2008 06:00:11 +0000 (-0000) Subject: Add comma to ("__weakref__",) so that it's a tuple instead of a string. X-Git-Tag: v2.2_pre6~88 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=7e4bfa520f240f5c6859369af9d0c18a226bcc12;p=portage.git Add comma to ("__weakref__",) so that it's a tuple instead of a string. Thanks to ferringb. svn path=/main/trunk/; revision=10020 --- diff --git a/pym/_emerge/__init__.py b/pym/_emerge/__init__.py index 947634354..2309eb4d8 100644 --- a/pym/_emerge/__init__.py +++ b/pym/_emerge/__init__.py @@ -831,7 +831,7 @@ def filter_iuse_defaults(iuse): yield flag class SlotObject(object): - __slots__ = ("__weakref__") + __slots__ = ("__weakref__",) def __init__(self, **kwargs): classes = [self.__class__]