summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEd Bartosh <eduard.bartosh@intel.com>2013-08-21 11:21:18 +0300
committerHasan Wan <hasan.wan@intel.com>2013-08-21 05:35:58 -0700
commit46c358cc208f5e2a684b535ef30aa5218f24bc83 (patch)
tree27964d706a7ff57fbcea2019da2675720aa8b9a4
parentbcda124af5b1797f87eda079c6e7c42e044c1b9b (diff)
downloadrepa-46c358cc208f5e2a684b535ef30aa5218f24bc83.tar.gz
repa-46c358cc208f5e2a684b535ef30aa5218f24bc83.tar.bz2
repa-46c358cc208f5e2a684b535ef30aa5218f24bc83.zip
Refined the output of repa list
Space separated list of images looks better from my point of view. Change-Id: Ic4ebc7c68f349f5f5c0400a42fe5fc53a2546ca0 Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Reviewed-on: https://otctools.jf.intel.com/review/6033 Tested-by: OTC Tools Tester <ed.bartosh@linux.intel.com> Reviewed-by: Hasan Wan <hasan.wan@intel.com>
-rwxr-xr-xrepa/list.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/repa/list.py b/repa/list.py
index 6ff71ae..a27d3de 100755
--- a/repa/list.py
+++ b/repa/list.py
@@ -33,7 +33,7 @@ def get_status(obs, project):
def show_images(meta):
if 'images' in meta:
- print ' images:', ','.join("%s:%s" % (img['name'], img['status']) \
+ print ' images:', ' '.join("%s:%s" % (img['name'], img['status']) \
for img in meta['images'])
def list_submissions(obs, regexp):