>From 2295a7c0a851ea1c8c1bf0f08f016e76c2550c4e Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 9 Sep 2017 01:21:26 +0200 Subject: [PATCH 04/16] gnulib-tool.py: Fix typo in rsync invocation. --- pygnulib/GLImport.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygnulib/GLImport.py b/pygnulib/GLImport.py index 22e3030..2236e8f 100644 --- a/pygnulib/GLImport.py +++ b/pygnulib/GLImport.py @@ -1210,7 +1210,7 @@ AC_DEFUN([%s_FILE_LIST], [\n''' % macro_prefix result = sp.check_output(cmd, shell=True) result = bool(int(result)) if result: # use rsync - args = ['rsync', '-Lrtz', '%sgulib/' % TP_RSYNC_URI, '.'] + args = ['rsync', '-Lrtz', '%sgnulib/' % TP_RSYNC_URI, '.'] else: # use wget args = ['wget', '--quiet', '-r', '-l1', '-nd', '-np', '-A.po', '%sgnulib' % TP_URL] -- 2.7.4