mirror of
https://git.yoctoproject.org/poky
synced 2026-05-02 00:32:12 +02:00
scripts: python3: use new style except statement
Changed old syle except statements 'except <exception>, var' to new style 'except <exception> as var' as old style is not supported in python3. (From OE-Core rev: 438eabc248f272e3d272aecaa4c9cec177b172d5) 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
07c97db272
commit
ee31bad762
@@ -190,7 +190,7 @@ def runcmd(cmd,destdir=None,printerr=True,out=None,env=None):
|
||||
err = os.tmpfile()
|
||||
try:
|
||||
subprocess.check_call(cmd, stdout=out, stderr=err, cwd=destdir, shell=isinstance(cmd, str), env=env or os.environ)
|
||||
except subprocess.CalledProcessError,e:
|
||||
except subprocess.CalledProcessError as e:
|
||||
err.seek(0)
|
||||
if printerr:
|
||||
logger.error("%s" % err.read())
|
||||
@@ -429,7 +429,7 @@ file_exclude = %s''' % (name, file_filter or '<empty>', repo.get('file_exclude',
|
||||
runcmd('git replace --graft %s %s' % (start, startrev))
|
||||
try:
|
||||
runcmd(merge)
|
||||
except Exception, error:
|
||||
except Exception as error:
|
||||
logger.info('''Merging component repository history failed, perhaps because of merge conflicts.
|
||||
It may be possible to commit anyway after resolving these conflicts.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user