Changeset 8279
- Timestamp:
- 20/04/12 19:10:33 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
mauRepo/MolesManager/trunk/src/libs/migration/processor/deployment.py
r8276 r8279 146 146 if len(ret['org']) > 1: 147 147 org_names.extend(ret['org'][1:]) 148 if len(ret['co_ind']) > 1:148 if len(ret['co_ind']) > 0: 149 149 ind_names.extend(ret['co_ind']) 150 if len(ret['co_org']) > 1:150 if len(ret['co_org']) > 0: 151 151 org_names.extend(ret['co_org']) 152 152 153 153 else: 154 154 raise NoAssociatedAuthor(doc_authors['authors'], migrationObject = whereAreAuthors) 155 156 if doc_authors['contributors'] is None:157 return158 155 159 if authors.has_key(doc_authors['contributors']):156 if doc_authors['contributors'] and authors.has_key(doc_authors['contributors']): 160 157 tmp_auth = authors[doc_authors['contributors']] 161 158 ret = self._extractIndividualsAndOrganizations(tmp_auth, whereAreAuthors)
Note: See TracChangeset
for help on using the changeset viewer.