Bug fixed about container creation with parameters. Minor typos fixed: tab vs space

Change-Id: I64237e6840b10c134a8376de92fd04a882f204da
Signed-off-by: garciadeblas <gerardo.garciadeblas@telefonica.com>
diff --git a/jenkins/common/container b/jenkins/common/container
index d959f8f..a43bae9 100644
--- a/jenkins/common/container
+++ b/jenkins/common/container
@@ -42,7 +42,7 @@
 	container=$2
 	shift 2
 	DEBUG "lxc launch $image $container $*"
-	lxc launch "$image" "$container" "$*"
+	lxc launch "$image" "$container" $*
 }
 
 container_exec() { 
@@ -51,6 +51,7 @@
 	DEBUG "exec in $container \"$*\""
 	lxc exec "$container" -- $*
 }
+
 container_exec_stderr() { 
 	container="$1"
 	shift