>From bd659d3e9ea5c2b17f758e834f7dde4376c7f402 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 9 Sep 2017 01:31:54 +0200 Subject: [PATCH 03/16] gnulib-tool.py: Fix typo in wget invocation. --- pygnulib/GLImport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygnulib/GLImport.py b/pygnulib/GLImport.py index 0e85a9a..22e3030 100644 --- a/pygnulib/GLImport.py +++ b/pygnulib/GLImport.py @@ -1212,7 +1212,7 @@ AC_DEFUN([%s_FILE_LIST], [\n''' % macro_prefix if result: # use rsync args = ['rsync', '-Lrtz', '%sgulib/' % TP_RSYNC_URI, '.'] else: # use wget - args = ['wget', '--quiet', '-r', '-l1', '-nd', '-np', 'A.po', + args = ['wget', '--quiet', '-r', '-l1', '-nd', '-np', '-A.po', '%sgnulib' % TP_URL] sp.call(args, shell=True) else: # if self.config['dryrun'] -- 2.7.4