Skip to content
Snippets Groups Projects

Release

Merged Alexa Valentová requested to merge test into master
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
+ 4
4
@@ -67,7 +67,7 @@ class ImporterMixin:
octopus_id=person_id
).first()
print(verifiably_inexsistent_person)
# print(verifiably_inexsistent_person)
# For some reason, probably due to integrity issues somewhere, the person
# can end up existing. FIXME
@@ -544,10 +544,10 @@ class PeopleTeamImporter(ImporterMixin):
people_profiles = self.get_processed_people_profiles(people_ids)
people_instances = self.create_and_update_people_models(people_profiles)
print("People instances:", people_instances, "DONE")
# print("People instances:", people_instances, "DONE")
for person_instance in people_instances:
print(f"Person instance:", person_instance, "DONE")
# print(f"Person instance:", person_instance, "DONE")
person_page = (
self.person_page_model.objects.filter(person=person_instance)
@@ -559,7 +559,7 @@ class PeopleTeamImporter(ImporterMixin):
name=self.team_shortcut
)[0]
print("Person page:", person_page, "DONE")
# print("Person page:", person_page, "DONE")
if person_page is None:
if not isinstance(person_instance.display_name, str):
Loading