>From 924491eb9a292786ee3b5611e2beb97b8797592e Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 9 Sep 2017 01:16:46 +0200 Subject: [PATCH 12/16] gnulib-tool.py: follow gnulib-tool changes, part 8 Follow gnulib-tool change from 2014-05-27 "gnulib-tool: wget translations using --no-verbose rather than --quiet" --- pygnulib/GLImport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygnulib/GLImport.py b/pygnulib/GLImport.py index bb8b839..d5f5ea6 100644 --- a/pygnulib/GLImport.py +++ b/pygnulib/GLImport.py @@ -1211,7 +1211,7 @@ AC_DEFUN([%s_FILE_LIST], [\n''' % macro_prefix if result: # use rsync args = ['rsync', '-Lrtz', '%sgnulib/' % TP_RSYNC_URI, '.'] else: # use wget - args = ['wget', '--quiet', '-r', '-l1', '-nd', '-np', '-A.po', + args = ['wget', '--no-verbose', '-r', '-l1', '-nd', '-np', '-A.po', '%sgnulib/' % TP_URL] sp.call(args, shell=True) else: # if self.config['dryrun'] -- 2.7.4