witten
/
luminotes
Archived
1
0
Fork 0

Fixing incorrect ordering of converted threads.

This commit is contained in:
Dan Helfman 2008-11-17 23:15:40 -08:00
parent 7a3da18fe0
commit ca69dfb2d5
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@ class Blog_converter( object ):
return blog_notebooks[ 0 ]
def convert_posts_to_forum_threads( self ):
notes = self.database.select_many( Note, self.blog_notebook.sql_load_recent_notes( start = 0, count = 1000 ) )
notes = self.database.select_many( Note, self.blog_notebook.sql_load_recent_notes( reverse = True, start = 0, count = 1000 ) )
for note in notes:
self.convert_post( note )