mirror of https://gitlab.com/bashrc2/epicyon
Missing datetime
parent
732b8efc97
commit
9ac0617e3c
2
inbox.py
2
inbox.py
|
|
@ -153,7 +153,7 @@ def _updateCachedHashtagSwarm(baseDir: str, nickname: str, domain: str,
|
||||||
modifiedDate = None
|
modifiedDate = None
|
||||||
try:
|
try:
|
||||||
modifiedDate = \
|
modifiedDate = \
|
||||||
datetime.strptime(lastModified, "%Y-%m-%dT%H:%M:%SZ")
|
datetime.datetime.strptime(lastModified, "%Y-%m-%dT%H:%M:%SZ")
|
||||||
except BaseException:
|
except BaseException:
|
||||||
print('WARN: unable to parse last modified cache date ' +
|
print('WARN: unable to parse last modified cache date ' +
|
||||||
str(lastModified))
|
str(lastModified))
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue