diff options
Diffstat (limited to 'Lib/uuid.py')
-rw-r--r-- | Lib/uuid.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/uuid.py b/Lib/uuid.py index 2c16c3f0f5a..036ffebf67a 100644 --- a/Lib/uuid.py +++ b/Lib/uuid.py @@ -949,7 +949,9 @@ def main(): import argparse parser = argparse.ArgumentParser( formatter_class=argparse.ArgumentDefaultsHelpFormatter, - description="Generate a UUID using the selected UUID function.") + description="Generate a UUID using the selected UUID function.", + color=True, + ) parser.add_argument("-u", "--uuid", choices=uuid_funcs.keys(), default="uuid4", |