diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2017-04-18 13:47:35 +1000 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-04-19 16:11:37 +0300 |
commit | 6a4efe8a82fbbaf49786c44886ccba2855c8fef2 (patch) | |
tree | f33b9f04aeec99aeb405b422672855d5bb15caf3 /mesonbuild/scripts/gettext.py | |
parent | 0e47e74a77447575cbabd71315481c6dd9632601 (diff) | |
download | meson-6a4efe8a82fbbaf49786c44886ccba2855c8fef2.zip meson-6a4efe8a82fbbaf49786c44886ccba2855c8fef2.tar.gz meson-6a4efe8a82fbbaf49786c44886ccba2855c8fef2.tar.bz2 |
Drop terminating fullstop from "Installing blah to blah" messages
Grammatically, this full stop isn't needed and with file names it has a
potential to be confusing:
Installing /foo/bar/filename.1 to /foo/bar/dirname.
The full stop caused me to do a double-take more than once, so let's drop it.
Diffstat (limited to 'mesonbuild/scripts/gettext.py')
-rw-r--r-- | mesonbuild/scripts/gettext.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/scripts/gettext.py b/mesonbuild/scripts/gettext.py index 624790d..f8b538c 100644 --- a/mesonbuild/scripts/gettext.py +++ b/mesonbuild/scripts/gettext.py @@ -81,7 +81,7 @@ def do_install(src_sub, bld_sub, dest, pkgname, langs): os.makedirs(os.path.split(outfile)[0], exist_ok=True) shutil.copyfile(srcfile, outfile) shutil.copystat(srcfile, outfile) - print('Installing %s to %s.' % (srcfile, outfile)) + print('Installing %s to %s' % (srcfile, outfile)) return 0 def run(args): |