From: Zac Medico Date: Mon, 28 Apr 2008 06:00:59 +0000 (-0000) Subject: Add comma to ("__weakref__",) so that it's a tuple instead of a string. X-Git-Tag: v2.1.5~125 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=b8aa72e58955872f4e366d50839a5d1e995121bb;p=portage.git Add comma to ("__weakref__",) so that it's a tuple instead of a string. Thanks to ferringb. (trunk r10020) svn path=/main/branches/2.1.2/; revision=10021 --- diff --git a/bin/emerge b/bin/emerge index dc7f88742..1242eb5ca 100755 --- a/bin/emerge +++ b/bin/emerge @@ -993,7 +993,7 @@ def filter_iuse_defaults(iuse): yield flag class SlotObject(object): - __slots__ = ("__weakref__") + __slots__ = ("__weakref__",) def __init__(self, **kwargs): classes = [self.__class__]