mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2024-11-28 09:33:54 +02:00
PBCKP-91: delete "\r" in windows command output.
This commit is contained in:
parent
279c98140f
commit
b7551bd2bf
@ -982,7 +982,8 @@ class ProbackupTest(object):
|
||||
else:
|
||||
return self.output
|
||||
except subprocess.CalledProcessError as e:
|
||||
raise ProbackupException(e.output.decode('utf-8'), self.cmd)
|
||||
raise ProbackupException(e.output.decode('utf-8').replace("\r",""),
|
||||
self.cmd)
|
||||
|
||||
def run_binary(self, command, asynchronous=False, env=None):
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user