From e551016a6eded61f9f8d9a03f7dd6025f0133c30 Mon Sep 17 00:00:00 2001 From: Philippe Groarke Date: Sat, 14 Oct 2017 19:10:06 -0400 Subject: [PATCH] check.py : Rename convert_guids option. --- check.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/check.py b/check.py index d36db50..e217300 100755 --- a/check.py +++ b/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: