Mapping log prints 35/118735/1
authorhyokeun <hyokeun.jeon@samsung.com>
Tue, 14 Mar 2017 01:14:53 +0000 (10:14 +0900)
committerhyokeun <hyokeun.jeon@samsung.com>
Tue, 14 Mar 2017 01:15:34 +0000 (10:15 +0900)
Change-Id: I3bad2b0b00bcf5c5211823c472f1624028b7f56d

common/mapping.py

index 5b83302..ba6d93b 100644 (file)
@@ -270,7 +270,9 @@ def git_obs_map(gerrit_prj, gerrit_branch=None, gitcache=None, \
     # remove overlapped items
     obs_prjs = remove_overlaps(obs_prjs)
 
-    print 'Found git-obs-mapping: %s -> %s' % (gerrit_prj, obs_prjs)
+    print 'Found git-obs-mapping: %s ->' % gerrit_prj
+    for obs_prj in obs_prjs:
+        print '    %s' % [ obs_prj[x] for x in obs_prj if x is not 'config' ]
     return obs_prjs
 
 def git_ref_map(prjdir=None, mapping_file=None, base_project=None):