Browse Source

EM Model: use the appropriate dict

ArnAud 9 years ago
parent
commit
d8f8943ca8
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      EditorialModel/model.py

+ 1
- 1
EditorialModel/model.py View File

@@ -78,7 +78,7 @@ class Model(object):
78 78
     # @param uid int : An EmComponent uid
79 79
     # @return The corresponding instance or False if uid don't exists
80 80
     def component(self, uid):
81
-        return False if uid not in self._components else self._components['uids'][uid]
81
+        return False if uid not in self._components['uids'] else self._components['uids'][uid]
82 82
         
83 83
     ## Return a new uid
84 84
     # @return a new uid

Loading…
Cancel
Save