[fix] nftable migrations for python3 compatibility

This commit is contained in:
ljf (zamentur) 2021-05-13 17:25:28 +02:00 committed by GitHub
parent 52e307040e
commit 0f10b91fa1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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