From 6a4efe8a82fbbaf49786c44886ccba2855c8fef2 Mon Sep 17 00:00:00 2001 From: Peter Hutterer Date: Tue, 18 Apr 2017 13:47:35 +1000 Subject: 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. --- mesonbuild/scripts/gettext.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'mesonbuild/scripts/gettext.py') diff --git a/mesonbuild/scripts/gettext.py b/mesonbuild/scripts/gettext.py index 624790d5a..f8b538c32 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): -- cgit v1.2.3