From e1adca3bf05d30e2113884a56f26ea905d8ebbe2 Mon Sep 17 00:00:00 2001 From: Gregory Danielson Date: Sun, 1 Nov 2020 16:28:24 -0600 Subject: [PATCH] Add region into location formatting --- lib/location.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/location.py b/lib/location.py index 0930da6..c49d7d1 100644 --- a/lib/location.py +++ b/lib/location.py @@ -321,7 +321,7 @@ def location_processing(location, ip_addr): if location: location = '~' + location if country: - location += ", %s" % country + location += ", %s, %s" % (region, country) hide_full_address = not force_show_full_address if location and not location.startswith('~'):