mirror of https://github.com/apache/cloudstack.git
cli: strip args else this fails on parsing
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
64907c1da4
commit
c10eeb6036
|
|
@ -230,7 +230,7 @@ class CloudStackShell(cmd.Cmd):
|
|||
return api_mod
|
||||
|
||||
def default(self, args):
|
||||
args = args.split(" ")
|
||||
args = args.strip().split(" ")
|
||||
api_name = args[0]
|
||||
|
||||
try:
|
||||
|
|
|
|||
Loading…
Reference in New Issue