>From 1ebd64a2769e24fb9d41c8d133b58111ee94152d Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Sat, 9 Sep 2017 10:25:09 +0200 Subject: [PATCH 16/16] gnulib-tool.py: follow gnulib-tool changes, part 12 Follow gnulib-tool change from 2015-02-03 "gnulib-tool: fix handling of patch(1) diagnostics" --- pygnulib/GLFileSystem.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pygnulib/GLFileSystem.py b/pygnulib/GLFileSystem.py index 7db09e1..1e75206 100644 --- a/pygnulib/GLFileSystem.py +++ b/pygnulib/GLFileSystem.py @@ -99,7 +99,7 @@ class GLFileSystem(object): if isfile(path_gnulib): if self.config['localdir'] and isfile(path_diff): shutil.copy(path_gnulib, path_temp) - command = 'patch -s "%s" < "%s"' % (path_temp, path_diff) + command = 'patch -s "%s" < "%s" >&2' % (path_temp, path_diff) try: # Try to apply patch sp.check_call(command, shell=True) except sp.CalledProcessError as error: -- 2.7.4