Commit 3acf484c authored by Jim Fulton's avatar Jim Fulton

Sort configuration data when printing it out in verbose mode.

parent 7c633050
......@@ -488,7 +488,7 @@ class Buildout(DictMixin):
sections.sort()
print_()
print_('Configuration data:')
for section in self._data:
for section in sorted(self._data):
_save_options(section, self[section], sys.stdout)
print_()
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment