From 92c469867853aae3a42fbe6ba48ce44020c3c71b Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Sat, 10 Jan 2015 21:42:38 -0800 Subject: [PATCH] Adjust the help strings to better reflect usage The default format is png (and not svg) so we should note that instead of having svg mentioned (this was leftover from the clone of this from taskflow which does default to svg). Change-Id: I108857ecc606ed2c12e0d5b460a8e72eb95af740 --- tools/states_to_dot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/states_to_dot.py b/tools/states_to_dot.py index 0885cf86a5..fd7a2ce5ec 100755 --- a/tools/states_to_dot.py +++ b/tools/states_to_dot.py @@ -54,9 +54,9 @@ def format_state(state): def main(): parser = optparse.OptionParser() parser.add_option("-f", "--file", dest="filename", - help="write svg to FILE", metavar="FILE") + help="write output to FILE", metavar="FILE") parser.add_option("-T", "--format", dest="format", - help="output in given format", + help="output in given format (default: png)", default='png') parser.add_option("--no-labels", dest="labels", help="do not include labels",