Skip to content
Snippets Groups Projects
Commit abe8e36a authored by Alexa Valentová's avatar Alexa Valentová
Browse files

remove debug code

parent ffea67a2
No related branches found
No related tags found
2 merge requests!1195Release,!1194Try fixing Octopus imports
Pipeline #20165 passed
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment