aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/scripts/gettext.py
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2017-04-18 13:47:35 +1000
committerJussi Pakkanen <jpakkane@gmail.com>2017-04-19 16:11:37 +0300
commit6a4efe8a82fbbaf49786c44886ccba2855c8fef2 (patch)
treef33b9f04aeec99aeb405b422672855d5bb15caf3 /mesonbuild/scripts/gettext.py
parent0e47e74a77447575cbabd71315481c6dd9632601 (diff)
downloadmeson-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.py2
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):