diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-06 22:20:15 +0100 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2019-01-06 22:20:15 +0100 |
commit | b82cbbdd4c6470643c383d53bd7360342e61e233 (patch) | |
tree | bdc60da0a2838c44d8d4f0a2f888f8ca129f4af7 | |
parent | 7ec609425ac9007f7ad618b120d4827630f47dc8 (diff) | |
download | meson-b82cbbdd4c6470643c383d53bd7360342e61e233.zip meson-b82cbbdd4c6470643c383d53bd7360342e61e233.tar.gz meson-b82cbbdd4c6470643c383d53bd7360342e61e233.tar.bz2 |
Fixed missing newline
-rw-r--r-- | mesonbuild/mintro.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/mintro.py b/mesonbuild/mintro.py index 7d86ac5..b183d2a 100644 --- a/mesonbuild/mintro.py +++ b/mesonbuild/mintro.py @@ -633,4 +633,4 @@ def write_meson_info_file(builddata: build.Build, errors: list, build_files_upda with open(tmp_file, 'w') as fp: json.dump(info_data, fp) fp.flush() - os.replace(tmp_file, info_file)
\ No newline at end of file + os.replace(tmp_file, info_file) |