diff options
author | Igor Gnatenko <i.gnatenko.brain@gmail.com> | 2016-12-31 20:27:52 +0100 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-01-01 12:02:05 -0500 |
commit | f0bc5568a74d555b332671d0f7f0d950688e2d61 (patch) | |
tree | 060cb67e09c06a95d3479c92411fa847b994fdfe /tools/cmake2meson.py | |
parent | 969dc7e995fcc19418bf4c6f66ac97b5a4ff2150 (diff) | |
download | meson-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/cmake2meson.py')
-rwxr-xr-x | tools/cmake2meson.py | 2 |
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 |