Fix adapter_wuxiaworldco date formate for 24 hour clock. Closes #345

This commit is contained in:
Jim Miller 2018-10-11 08:46:46 -05:00
parent 4a2d876351
commit 025cdb1e37

View file

@ -36,8 +36,8 @@ def getClass():
class WuxiaWorldCoSiteAdapter(BaseSiteAdapter):
NEW_DATE_FORMAT = '%m/%d/%Y %I:%M:%S %p'
OLD_DATE_FORMAT = '%Y/%m/%d %I:%M:%S'
NEW_DATE_FORMAT = '%Y/%m/%d %H:%M:%S'
OLD_DATE_FORMAT = '%m/%d/%Y %I:%M:%S %p'
def __init__(self, config, url):
BaseSiteAdapter.__init__(self, config, url)