]> git.proxmox.com Git - qemu.git/commit
scripts/qapi.py: Avoid syntax not supported by Python 2.4
authorPeter Maydell <peter.maydell@linaro.org>
Tue, 20 Aug 2013 14:50:15 +0000 (15:50 +0100)
committerLuiz Capitulino <lcapitulino@redhat.com>
Tue, 20 Aug 2013 15:52:00 +0000 (11:52 -0400)
commit21e0043bada1a24ae2ba6cd0051e104c0cbf9634
tree93c36176b0d1b22aef13fb6b300ded0b88af3bd9
parent277acfe8b38de35be8cb6e274678b5a7919c2d44
scripts/qapi.py: Avoid syntax not supported by Python 2.4

The Python "except Foo as x" syntax was only introduced in
Python 2.6, but we aim to support Python 2.4 and later.
Use the old-style "except Foo, x" syntax instead, thus
fixing configure/compile on systems with older Python.

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
scripts/qapi.py