Fix fake country flag

This commit is contained in:
littlewolf 2019-12-24 14:10:47 +03:00
parent 62e12d8570
commit 670da807af

View File

@ -191,7 +191,7 @@ def update_fake_country_flag():
resp = get(link_to_request)
if resp.status_code == 200:
country = Country.objects.get(code="aa")
country.svg_image = link_to_request
country.svg_image = "/svg/country/10-31-2019/aa.svg"
country.save()