Sort option names by group in autohelp log output

Change-Id: I83b14f29f585515a88b953023a75e562647eaf03
This commit is contained in:
Shaun McCance 2014-01-20 16:34:07 -05:00
parent 1ecfb82f87
commit 17153e8d90
1 changed files with 2 additions and 2 deletions

View File

@ -275,9 +275,9 @@ def update_flagmappings(package_name, options, verbose=0):
set(original_flags.keys()))
print("\nRemoved Flags\n")
for line in sorted(removed_flags):
for line in sorted(removed_flags, OptionsCache._cmpopts):
print(line)
print("\nAdded Flags\n")
for line in sorted(added_flags):
for line in sorted(added_flags, OptionsCache._cmpopts):
print(line)