Only show tags that exist

main
Bob Mottram 2020-12-05 16:11:11 +00:00
parent d2f8d916f7
commit f45f6235d0
1 changed files with 11 additions and 10 deletions

View File

@ -69,7 +69,8 @@ def getHashtagCategories(baseDir: str, recent=False, category=None) -> None:
if recent: if recent:
tagsFilename = baseDir + '/tags/' + hashtag + '.txt' tagsFilename = baseDir + '/tags/' + hashtag + '.txt'
if os.path.isfile(tagsFilename): if not os.path.isfile(tagsFilename):
continue
modTimesinceEpoc = \ modTimesinceEpoc = \
os.path.getmtime(tagsFilename) os.path.getmtime(tagsFilename)
lastModifiedDate = \ lastModifiedDate = \