summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorJoshua Harlow <harlowja@gmail.com>2015-01-10 21:42:38 -0800
committerJoshua Harlow <harlowja@gmail.com>2015-01-10 21:43:40 -0800
commit92c469867853aae3a42fbe6ba48ce44020c3c71b (patch)
treef6def308a5a30ed9f55006e032b9c9ce4617ab1b /tools
parent4ef23e85c21fb00dacb13c0ea8acc6c08bc8dcab (diff)
downloadironic-92c469867853aae3a42fbe6ba48ce44020c3c71b.tar.gz
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
Diffstat (limited to 'tools')
-rwxr-xr-xtools/states_to_dot.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/states_to_dot.py b/tools/states_to_dot.py
index 0885cf86a..fd7a2ce5e 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",