Browse Source

Fix.

master
Erik Stein 7 years ago
parent
commit
e9b4acd83a
  1. 2
      shared/utils/dateformat.py

2
shared/utils/dateformat.py

@ -152,7 +152,7 @@ def format_time_range(from_time, to_time, variant=DEFAULT_VARIANT):
from_format = to_format = "q" # get_format(variant + 'TIME_FORMAT', lang=get_language())
if from_time == to_time or not to_time:
return time_format(from_time, get_format(from_format), lang=get_language())
return time_format(from_time, get_format(from_format, lang=get_language()))
else:
f = t = ""
if from_time:

Loading…
Cancel
Save