Commit bef7913e authored by Devaev Maxim's avatar Devaev Maxim

Fixed bug with getting dict of sharedObjects

parent 60255e9a
......@@ -93,7 +93,7 @@ class SharedAbstract :
return ( entity._shared_objects_dict.has_key(shared_object) or shared_object in entity._shared_objects_dict.values() )
def sharedObject(entity, shared_object_name) :
return entity, entity._shared_objects_dict[shared_object_name]
return entity._shared_objects_dict[shared_object_name]
def sharedObjects(entity) :
return entity._shared_objects_dict
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment