summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pygnulib/GLFileSystem.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/pygnulib/GLFileSystem.py b/pygnulib/GLFileSystem.py
index 7db09e1ce6..1e752068d4 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: