aboutsummaryrefslogtreecommitdiff
path: root/modules/location.py
diff options
context:
space:
mode:
authorGravatar jesopo2019-04-28 10:51:18 +0100
committerGravatar jesopo2019-04-28 10:51:18 +0100
commit795a9a91af3b547ac37127624b17a499647b866b (patch)
treea88d8d428956fcfb20a910587e3e97ce2992df29 /modules/location.py
parentAdd location.py, to allow users to set their location (diff)
signature
Remove debug print
Diffstat (limited to 'modules/location.py')
-rw-r--r--modules/location.py1
1 files changed, 0 insertions, 1 deletions
diff --git a/modules/location.py b/modules/location.py
index ee97419b..e4f769aa 100644
--- a/modules/location.py
+++ b/modules/location.py
@@ -8,7 +8,6 @@ for tz in pytz.all_timezones:
_lower_timezones[tz.lower()] = tz
def _find_tz(s):
- print(_lower_timezones.get(s.lower(), None))
return _lower_timezones.get(s.lower(), None)
@utils.export("set", {"setting": "location", "help": "Set your location",