aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorIgor Gnatenko <i.gnatenko.brain@gmail.com>2016-12-31 20:27:52 +0100
committerJussi Pakkanen <jpakkane@gmail.com>2017-01-01 12:02:05 -0500
commitf0bc5568a74d555b332671d0f7f0d950688e2d61 (patch)
tree060cb67e09c06a95d3479c92411fa847b994fdfe /tools
parent969dc7e995fcc19418bf4c6f66ac97b5a4ff2150 (diff)
downloadmeson-f0bc5568a74d555b332671d0f7f0d950688e2d61.zip
meson-f0bc5568a74d555b332671d0f7f0d950688e2d61.tar.gz
meson-f0bc5568a74d555b332671d0f7f0d950688e2d61.tar.bz2
style: fix E703 violations
E703: statement ends with a semicolon Signed-off-by: Igor Gnatenko <i.gnatenko.brain@gmail.com>
Diffstat (limited to 'tools')
-rwxr-xr-xtools/cmake2meson.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/cmake2meson.py b/tools/cmake2meson.py
index 5cf6dfe..7d6d02a 100755
--- a/tools/cmake2meson.py
+++ b/tools/cmake2meson.py
@@ -46,7 +46,7 @@ class Lexer:
def lex(self, code):
lineno = 1
line_start = 0
- loc = 0;
+ loc = 0
col = 0
while(loc < len(code)):
matched = False