mirror of https://gitlab.com/bashrc2/epicyon
Exception message
parent
7eca0b33be
commit
851ac0fc18
5
inbox.py
5
inbox.py
|
@ -99,8 +99,9 @@ def storeHashTags(baseDir: str,postJsonObject: {}) -> None:
|
||||||
content = tagsFile.read()
|
content = tagsFile.read()
|
||||||
tagsFile.seek(0, 0)
|
tagsFile.seek(0, 0)
|
||||||
tagsFile.write(postUrl+'\n'+content)
|
tagsFile.write(postUrl+'\n'+content)
|
||||||
except:
|
except Exception as e:
|
||||||
pass
|
print('WARN: Failed to write entry to tags file '+ \
|
||||||
|
tagsFilename+' '+str(e))
|
||||||
|
|
||||||
def inboxStorePostToHtmlCache(recentPostsCache: {},maxRecentPosts: int, \
|
def inboxStorePostToHtmlCache(recentPostsCache: {},maxRecentPosts: int, \
|
||||||
translate: {}, \
|
translate: {}, \
|
||||||
|
|
Loading…
Reference in New Issue