removed redundant sort on file listing; sort on file lists should now

only be called on the specific incantation.

wrote a preliminary list scroller on beta only.
This commit is contained in:
endorphant
2016-10-06 11:38:14 -04:00
parent 2003af31f8
commit 281d8cda06
5 changed files with 81 additions and 10 deletions

View File

@@ -501,6 +501,8 @@ def view_feels(townie):
for entry in os.listdir(entryDir):
filenames.append(os.path.join(entryDir, entry))
metas = core.meta(filenames)
metas.sort(key = lambda entry:entry[4])
metas.reverse()
if len(filenames) > 0:
entries = []