Forgot stupid self.

This commit is contained in:
Jeremy Fincher 2003-04-09 18:15:05 +00:00
parent 79a1d351ad
commit c19bae2b34

View File

@ -220,7 +220,7 @@ class queue(dict):
class MaxLengthQueue(queue):
__slots__ = ('length',)
def __init__(length, *args):
def __init__(self, length, *args):
self.length = length
queue.__init__(self, *args)