diff --git a/tools/convert_blog_to_forum.py b/tools/convert_blog_to_forum.py index 384d68c..d36f721 100755 --- a/tools/convert_blog_to_forum.py +++ b/tools/convert_blog_to_forum.py @@ -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 )