Fix sort on sets in hack/verify-flags-underscore.py
This commit is contained in:
parent
8800450c5f
commit
ce013e288c
@ -163,13 +163,15 @@ def get_flags(rootdir, files):
|
|||||||
if len(new_excluded_flags) != 0:
|
if len(new_excluded_flags) != 0:
|
||||||
print("Found a flag declared with an _ but which is not explicitly listed as a valid flag name in hack/verify-flags/excluded-flags.txt")
|
print("Found a flag declared with an _ but which is not explicitly listed as a valid flag name in hack/verify-flags/excluded-flags.txt")
|
||||||
print("Are you certain this flag should not have been declared with an - instead?")
|
print("Are you certain this flag should not have been declared with an - instead?")
|
||||||
new_excluded_flags.sort()
|
l = list(new_excluded_flags)
|
||||||
print("%s" % "\n".join(new_excluded_flags))
|
l.sort()
|
||||||
|
print("%s" % "\n".join(l))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
if len(new_flags) != 0:
|
if len(new_flags) != 0:
|
||||||
print("Found flags in golang files not in the list of known flags. Please add these to hack/verify-flags/known-flags.txt")
|
print("Found flags in golang files not in the list of known flags. Please add these to hack/verify-flags/known-flags.txt")
|
||||||
new_flags.sort()
|
l = list(new_flags)
|
||||||
print("%s" % "\n".join(new_flags))
|
l.sort()
|
||||||
|
print("%s" % "\n".join(l))
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
return list(flags)
|
return list(flags)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user