From 7c7f7e04be3d93b58b1b20d0429ff891d747252f Mon Sep 17 00:00:00 2001 From: Sarah Date: Sun, 3 Apr 2022 20:34:53 +0100 Subject: [PATCH] fix file name --- update_films_by_country.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update_films_by_country.py b/update_films_by_country.py index 1e00617..e7ce0b7 100644 --- a/update_films_by_country.py +++ b/update_films_by_country.py @@ -38,7 +38,7 @@ def build_page(films_by_country): def get_flags_dict(): flags = {} - with open('country_flags.csv', newline='') as f: + with open('country-flags.csv', newline='') as f: reader = csv.reader(f, quotechar="\"") next(reader, None) # skip the headers