From f50f96d1d46976c35c5aa43a1de4c69bbcfefb4c Mon Sep 17 00:00:00 2001
From: Seblu <sebastien.luttringer@smartjog.com>
Date: Thu, 30 Dec 2010 13:49:25 +0100
Subject: [PATCH] list vm $toto -> list vm$toto

this is very usefull with alias!
---
 cccli/command.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cccli/command.py b/cccli/command.py
index 8e5d73a..9a6190b 100644
--- a/cccli/command.py
+++ b/cccli/command.py
@@ -183,7 +183,7 @@ class Command(object):
         # arg stuff
         if len(argv) == 1:
             raise cmdBadArgument()
-        tql = str.join(" ", argv[1:])
+        tql = str.join("", argv[1:])
         # print tql list result
         items = self.cli.rpc.list(tql)
         if len(items) == 0:
-- 
GitLab