From 11c08f412a99ef6467894faad2c01a48bf8d4129 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonas=20Borgstr=C3=B6m?= Date: Tue, 4 Mar 2014 22:02:35 +0100 Subject: [PATCH] check: No progreess output to stderr during archives check --- attic/archive.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attic/archive.py b/attic/archive.py index 07652e2e5..34f8b7fd6 100644 --- a/attic/archive.py +++ b/attic/archive.py @@ -496,7 +496,7 @@ class ArchiveChecker: def report_progress(self, msg, error=False): if error: self.error_found = True - print(msg, file=sys.stderr) + print(msg, file=sys.stderr if error else sys.stdout) sys.stderr.flush() def identify_key(self, repository):