Changeset 436 for elixir/trunk

Show
Ignore:
Timestamp:
12/18/08 14:08:10 (3 years ago)
Author:
ged
Message:

revert part of the last commit...

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • elixir/trunk/elixir/collection.py

    r435 r436  
    88# default entity collection 
    99class EntityCollection(list): 
    10     def __init__(self, *args): 
     10    def __init__(self): 
    1111        # _entities is a dict of entities keyed on their name. 
    1212        self._entities = {} 
    13         list.__init__(self, *args) 
     13        list.__init__(self) 
    1414 
    1515    def append(self, entity):