From 7f39e6dd8722dbbef5addc0944c9cc5ae093f60d Mon Sep 17 00:00:00 2001 From: David Rose Date: Thu, 29 Aug 2002 17:39:30 +0000 Subject: [PATCH] extend list operations --- direct/src/interval/MetaInterval.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/interval/MetaInterval.py b/direct/src/interval/MetaInterval.py index b6b87a03cd..24c61dcd2d 100644 --- a/direct/src/interval/MetaInterval.py +++ b/direct/src/interval/MetaInterval.py @@ -112,7 +112,7 @@ class MetaInterval(CMetaInterval): if isinstance(other, MetaInterval): self.ivals += other.ivals else: - self.ivals += list(other.ivals) + self.ivals += list(other) self.__ivalsDirty = 1 return self