check.py : Rename convert_guids option.
This commit is contained in:
parent
be6c012502
commit
e551016a6e
1 changed files with 2 additions and 2 deletions
4
check.py
4
check.py
|
@ -284,7 +284,7 @@ def main():
|
|||
(gamecontrollerdb.txt)")
|
||||
parser.add_argument("--sort", help="sort the database on success",
|
||||
action="store_true")
|
||||
parser.add_argument("--guid_convert", help="convert Windows and macOS \
|
||||
parser.add_argument("--convert_guids", help="convert Windows and macOS \
|
||||
GUIDs to the newer SDL 2.0.5 format", action="store_true")
|
||||
parser.add_argument("--remove_dupes", help="automatically remove \
|
||||
duplicates", action="store_true")
|
||||
|
@ -310,7 +310,7 @@ def main():
|
|||
if args.sort:
|
||||
print("Sorting by human readable name.")
|
||||
sort_by_name(args.input_file)
|
||||
if args.guid_convert:
|
||||
if args.convert_guids:
|
||||
print("Converting GUIDs to SDL 2.0.5 format.")
|
||||
convert_guids(args.input_file)
|
||||
if args.remove_dupes:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue