fixing more eject bugs
parent
e8607aa42d
commit
3491cc7843
|
@ -382,6 +382,9 @@ def view_feed():
|
|||
entryDir = os.path.join("/home", townie, ".ttbp", "entries")
|
||||
filenames = os.listdir(entryDir)
|
||||
for entry in filenames:
|
||||
### REALLY MAKE A REAL FILENAME VALIDATOR
|
||||
fileSplit = os.path.splitext(entry)
|
||||
if len(fileSplit[0]) == 8 and fileSplit[1] == ".txt":
|
||||
feedList.append(os.path.join(entryDir, entry))
|
||||
|
||||
metas = core.meta(feedList)
|
||||
|
@ -421,7 +424,10 @@ def list_select(options, prompt):
|
|||
invalid = True
|
||||
|
||||
while invalid:
|
||||
try:
|
||||
choice = raw_input("\n\n"+prompt)
|
||||
except KeyboardInterrupt:
|
||||
list_select(options, prompt)
|
||||
|
||||
try:
|
||||
ans = int(choice)
|
||||
|
|
Loading…
Reference in New Issue