mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Python3: fix string split in postgresql migration
This commit is contained in:
parent
923f703ea0
commit
14d4cec844
1 changed files with 1 additions and 1 deletions
|
@ -78,5 +78,5 @@ class MyMigration(Migration):
|
|||
)
|
||||
)
|
||||
|
||||
out = out.strip().split("\n")
|
||||
out = out.strip().split(b"\n")
|
||||
return (returncode, out, err)
|
||||
|
|
Loading…
Add table
Reference in a new issue