sure am hardcoding more stuff for issue #11

master
endorphant 2017-11-07 12:19:35 -05:00
parent 84492799e3
commit ed9805a543
2 changed files with 6 additions and 4 deletions

View File

@ -810,8 +810,9 @@ def view_feed():
for entry in filenames:
## hardcoded bs
if core.valid(entry) and re.search("201612", entry):
feedList.append(os.path.join(entryDir, entry))
if core.valid(entry):
if re.search("2017", entry):
feedList.append(os.path.join(entryDir, entry))
metas = core.meta(feedList)
metas.sort(key = lambda entry:entry[3])

View File

@ -809,8 +809,9 @@ def view_feed():
for entry in filenames:
## hardcoded bs
if core.valid(entry) and re.search("201612", entry):
feedList.append(os.path.join(entryDir, entry))
if core.valid(entry):
if re.search("2017", entry):
feedList.append(os.path.join(entryDir, entry))
metas = core.meta(feedList)
metas.sort(key = lambda entry:entry[3])