bastille: convert to py3

Signed-off-by: Armin Kuster <akuster808@gmail.com>
This commit is contained in:
Armin Kuster
2020-02-02 21:11:38 +00:00
parent ace43479e7
commit 2df5bbcf17
@@ -1,4 +1,4 @@
#!/usr/bin/env python #!/usr/bin/env python3
#Signed-off-by: Anne Mulhern <mulhern@yoctoproject.org> #Signed-off-by: Anne Mulhern <mulhern@yoctoproject.org>
@@ -83,7 +83,7 @@ def xform_file(qfile, distro, qlabel):
@param name qlabel The question label for which the distro is to be added. @param name qlabel The question label for which the distro is to be added.
""" """
questions_in = open(qfile) questions_in = open(qfile)
questions_out = tempfile.NamedTemporaryFile(delete=False) questions_out = tempfile.NamedTemporaryFile(mode="w+", delete=False)
for l in add_requires(qlabel, distro, questions_in): for l in add_requires(qlabel, distro, questions_in):
questions_out.write(l) questions_out.write(l)
questions_out.close() questions_out.close()