Fix bug importing datetime.datetime

This commit is contained in:
tomkat83 2017-07-25 18:16:49 +02:00
parent d1346b2cd6
commit ac3016c84d

View file

@ -6,9 +6,10 @@ import os
import time
from datetime import datetime
###############################################################################
log = getLogger("PLEX."+__name__)
# This is a throwaway variable to deal with a python bug
_ = datetime.strptime('20110101', '%Y%m%d')
###############################################################################