Remove random print

The random print statement does not provide any useful information
and spams the console output if a repo has many declared views with
uninteresting output.

Change-Id: I7f40730c753ec8f1145ba6144fe28bf97844b9e2
Signed-off-by: Thanh Ha <zxiiro@linux.com>
This commit is contained in:
Thanh Ha 2018-11-13 18:03:16 +08:00
parent 8c99e569b5
commit c2f034ee0b
No known key found for this signature in database
GPG Key ID: B0CB27E00DA095AA
1 changed files with 0 additions and 1 deletions

View File

@ -499,7 +499,6 @@ class YamlParser(object):
return self.data.get('view-group', {}).get(name, None)
def _getViewTemplate(self, name):
print(name)
view = self.data.get('view-template', {}).get(name, None)
if not view:
return view