You've already forked pg_probackup
mirror of
https://github.com/postgrespro/pg_probackup.git
synced 2025-09-16 09:26:30 +02:00
PBCKP-91: delete "\r" in windows command output.
This commit is contained in:
@@ -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):
|
||||
|
||||
|
Reference in New Issue
Block a user