summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohan Dahlin <johan@gnome.org>2011-02-01 16:13:08 -0200
committerJohan Dahlin <johan@gnome.org>2011-02-01 16:21:25 -0200
commitb3224b318300269cd78cabac13857bc64696f49e (patch)
treecac6f9fb2a11f5bab781ac299049dd8d88e3ca75
parentd752ea96cba1b77e1d4ab8c16cdad0dbf15f3419 (diff)
downloadgobject-introspection-b3224b318300269cd78cabac13857bc64696f49e.tar.gz
Sort output
-rw-r--r--giscanner/annotationmain.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/giscanner/annotationmain.py b/giscanner/annotationmain.py
index 2b45c149..97897e7f 100644
--- a/giscanner/annotationmain.py
+++ b/giscanner/annotationmain.py
@@ -63,7 +63,7 @@ def annotation_main(args):
print '/* THIS FILE IS GENERATED DO NOT EDIT */'
print '/' + ('*' * 60) + '/'
print
- for block in blocks.values():
+ for block in sorted(blocks.values()):
print block.to_gtk_doc()
print
print