invert sort order for blog entries

This commit is contained in:
phear 2010-06-11 09:49:47 +00:00
parent 7612f74f87
commit cc83ebd691

View file

@ -597,6 +597,7 @@ def get_blog_ids():
del fnames[0]
file_list = []
os.path.walk(BLOG_DIR, add_files_to_list, file_list)
file_list.sort(reverse = True)
return file_list
@bobo.query('/blog')