From: Guannan Ren Date: Fri, 22 Mar 2013 04:08:20 +0000 (+0800) Subject: python:remove semicolon in python code X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=d450037740c8f320ff145a0459d7887bff7faafd;p=libvirt.git python:remove semicolon in python code This breaked "make syntax-check" testing Pushed under trivial rule --- diff --git a/python/generator.py b/python/generator.py index fbaf7972b4..0237374b67 100755 --- a/python/generator.py +++ b/python/generator.py @@ -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