1
0
mirror of https://gitlab.com/libvirt/libvirt-python.git synced 2025-08-04 12:21:57 +03:00

python:remove semicolon in python code

This breaked "make syntax-check" testing

Pushed under trivial rule
This commit is contained in:
Guannan Ren
2013-03-22 12:08:20 +08:00
parent 2d40f8a365
commit 36975201ff

View File

@ -1490,7 +1490,7 @@ def buildWrappers(module):
classes.write(", %s" % arg[0])
n = n + 1
if arg[0] == "flags":
classes.write("=0");
classes.write("=0")
classes.write("):\n")
writeDoc(module, name, args, ' ', classes)
n = 0