Skip to content
Snippets Groups Projects
Commit b9354112 authored by Martin Mareš's avatar Martin Mareš
Browse files

Školy: Bugfix

parent 31454f5a
No related branches found
No related tags found
No related merge requests found
......@@ -424,7 +424,7 @@ def plan_actions() -> List[Action]:
for old, new in merged_list:
if old and new:
print(f' Spárovaná (#{old.school.place_id}):')
s = new
s = old
elif old:
print(f' Jen v OSMO (#{old.school.place_id}):')
s = old
......@@ -435,6 +435,8 @@ def plan_actions() -> List[Action]:
print(f'\t# URL: {school_url(old.school.place_id)}')
if old.school.place.note:
print(f'\t# NOTE: {old.school.place.note}')
if old.school.place.hidden:
print('\t# HIDDEN')
for field in fields:
print(f'\t{field}: {getattr(s, field)}')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment