We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 12f267e commit b9f34cbCopy full SHA for b9f34cb
testgres/testgres.py
@@ -457,7 +457,7 @@ def get_control_data(self):
457
lines = subprocess.check_output(
458
[pg_controldata] + ["-D", self.data_dir],
459
stderr=subprocess.STDOUT
460
- ).splitlines()
+ ).decode("utf-8").splitlines()
461
except subprocess.CalledProcessError as e:
462
raise PgcontroldataException(e.output, e.cmd)
463
0 commit comments