Add comma to ("__weakref__",) so that it's a tuple instead of a string.
authorZac Medico <zmedico@gentoo.org>
Mon, 28 Apr 2008 06:00:59 +0000 (06:00 -0000)
committerZac Medico <zmedico@gentoo.org>
Mon, 28 Apr 2008 06:00:59 +0000 (06:00 -0000)
Thanks to ferringb. (trunk r10020)

svn path=/main/branches/2.1.2/; revision=10021

bin/emerge

index dc7f88742c27ce0088843d35a9a70677aa5d2a71..1242eb5cac361936425fc669da96e7d5f9db4a8d 100755 (executable)
@@ -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__]