mirror of
https://github.com/SickGear/SickGear.git
synced 2024-12-01 00:43:37 +00:00
Fixes originally aired dates and times issues. Please perform a mass update of all shows after updating to this new commit to have changes take affect.
This commit is contained in:
parent
e788580d09
commit
8ac0b79986
2 changed files with 2 additions and 2 deletions
|
@ -584,7 +584,7 @@ class Tvdb:
|
|||
|
||||
if key == 'airs_time':
|
||||
value = parse(value).time()
|
||||
value = value.strftime("%I:%M")
|
||||
value = value.strftime("%I:%M %p")
|
||||
except:
|
||||
pass
|
||||
|
||||
|
|
|
@ -456,7 +456,7 @@ class TVRage:
|
|||
|
||||
if key == 'airs_time':
|
||||
value = parse(value).time()
|
||||
value = value.strftime("%I:%M")
|
||||
value = value.strftime("%I:%M %p")
|
||||
except:
|
||||
pass
|
||||
|
||||
|
|
Loading…
Reference in a new issue