Browse Source

extend list operations

David Rose 23 years ago
parent
commit
7f39e6dd87
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/interval/MetaInterval.py

+ 1 - 1
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