Use self.args when we parse arguments that way the arguments can be constructed manually

This commit is contained in:
Toshio Kuratomi 2015-12-06 22:16:31 -08:00
commit 4d637e5780
6 changed files with 6 additions and 6 deletions

View file

@ -113,7 +113,7 @@ class GalaxyCLI(CLI):
help='Force overwriting an existing role')
# get options, args and galaxy object
self.options, self.args =self.parser.parse_args()
self.options, self.args =self.parser.parse_args(self.args[1:])
display.verbosity = self.options.verbosity
self.galaxy = Galaxy(self.options)