Fix broken quiet mode

Resolves #754
This commit is contained in:
Darko Poljak 2019-04-12 09:13:25 +02:00
parent a4ed9e4d0e
commit 279aada5db
2 changed files with 4 additions and 0 deletions

View File

@ -304,6 +304,7 @@ class Remote(object):
try:
if self.quiet_mode:
stderr = subprocess.DEVNULL
close_stderr = False
if return_output:
output = subprocess.check_output(command, env=os_environ,
stderr=stderr).decode()

View File

@ -1,6 +1,9 @@
Changelog
---------
next:
* Core: Fix broken quiet mode (Darko Poljak)
4.10.10: 2019-04-11
* New types: __ufw and __ufw_rule (Mark Polyakov)
* Type __link: Add messaging (Ander Punnar)