mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 18:32:15 +02:00
wic: replace print statements with print function
Print statements have been replaced with print function in Python 3. Replaced them in wic code to be able to run it under both Python 2 and Python 3. [YOCTO #9412] (From OE-Core rev: ee6979a19c77931c3cf6368e695e370d46192fef) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
4dadbbdd46
commit
0c57dd96c8
@@ -187,8 +187,8 @@ class BitbakeVars(defaultdict):
|
||||
for line in varsfile:
|
||||
self._parse_line(line, image)
|
||||
else:
|
||||
print "Couldn't get bitbake variable from %s." % fname
|
||||
print "File %s doesn't exist." % fname
|
||||
print("Couldn't get bitbake variable from %s." % fname)
|
||||
print("File %s doesn't exist." % fname)
|
||||
return
|
||||
else:
|
||||
# Get bitbake -e output
|
||||
@@ -202,8 +202,8 @@ class BitbakeVars(defaultdict):
|
||||
msger.set_loglevel(log_level)
|
||||
|
||||
if ret:
|
||||
print "Couldn't get '%s' output." % cmd
|
||||
print "Bitbake failed with error:\n%s\n" % lines
|
||||
print("Couldn't get '%s' output." % cmd)
|
||||
print("Bitbake failed with error:\n%s\n" % lines)
|
||||
return
|
||||
|
||||
# Parse bitbake -e output
|
||||
|
||||
Reference in New Issue
Block a user