Commit 04a2b221 by Brian Coca

removed conflicting short options

parent 38528c8e
...@@ -83,9 +83,9 @@ class GalaxyCLI(CLI): ...@@ -83,9 +83,9 @@ class GalaxyCLI(CLI):
elif self.action == "list": elif self.action == "list":
self.parser.set_usage("usage: %prog list [role_name]") self.parser.set_usage("usage: %prog list [role_name]")
elif self.action == "search": elif self.action == "search":
self.parser.add_option('-P', '--platforms', dest='platforms', self.parser.add_option('--platforms', dest='platforms',
help='list of OS platforms to filter by') help='list of OS platforms to filter by')
self.parser.add_option('-T', '--galaxy-tags', dest='tags', self.parser.add_option('--galaxy-tags', dest='tags',
help='list of galaxy tags to filter by') help='list of galaxy tags to filter by')
self.parser.set_usage("usage: %prog search [<search_term>] [-T <galaxy_tag1,galaxy_tag2>] [-P platform]") self.parser.set_usage("usage: %prog search [<search_term>] [-T <galaxy_tag1,galaxy_tag2>] [-P platform]")
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment