From dd461e3ec0adf6b95026de749980cb803903ffed Mon Sep 17 00:00:00 2001 From: Anna Wiggins Date: Wed, 12 Sep 2012 10:20:34 -0400 Subject: [PATCH] Change command-line options to be more intuitive --- polygraph.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polygraph.py b/polygraph.py index b3ade28..8ee64c7 100755 --- a/polygraph.py +++ b/polygraph.py @@ -33,8 +33,8 @@ def parse_args(): parser = argparse.ArgumentParser(description='Generate graphs of polyamorous family networks from data files') parser.add_argument('--input', '-i', default='network.json', help='Input file in json format') parser.add_argument('--output', '-o', default='network.png', help='Output image file. Format auto-detected from file extension') - parser.add_argument('--gender', '-g', action='store_true', help='Enable gender in output graph') - parser.add_argument('--relationship-types', '-rt', action='store_true', help='Enable relationship details (std risk, relationship type) in output graph') + parser.add_argument('--gender', '-g', action='store_true', help='Indicate gender in output graph') + parser.add_argument('--relationships', '-r', action='store_true', help='Indicate relationship details (std risk, relationship type) in output graph') return parser.parse_args()