Skip to content

Commit

Permalink
Added some debugging info
Browse files Browse the repository at this point in the history
  • Loading branch information
da115115 committed Feb 16, 2022
1 parent 0d909b2 commit 388e963
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion checkers/check-por-cmp-optd-it.py
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,14 @@

for city_detail_str in city_detail_list:
city_details = city_detail_str.split('|')
city_geo_id = city_details[1]
try:
city_geo_id = city_details[1]
except:
print(f"optd_por_code: {optd_por_code}")
print(f"city_details: {city_details}")
print(f"city_detail_list: {city_detail_list}")
print(f"city_detail_list_str: {city_detail_list_str}")
raise Exception

if city_geo_id in optd_por_by_geo_dict:
city_record = optd_por_by_geo_dict[city_geo_id]
Expand Down

0 comments on commit 388e963

Please sign in to comment.