Python3: fix string split in postgresql migration

This commit is contained in:
Alexandre Aubin 2021-06-04 21:44:14 +02:00 committed by GitHub
parent 923f703ea0
commit 14d4cec844
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -78,5 +78,5 @@ class MyMigration(Migration):
)
)
out = out.strip().split("\n")
out = out.strip().split(b"\n")
return (returncode, out, err)