Updated Wagic Version and Python scripts

Updated Wagic to version 0.24.0 and the Python scripts to use the print syntax for Python 3 so the files could be build.
This commit is contained in:
Eduardo MG
2023-03-26 22:30:20 -06:00
parent b23961c0ee
commit 889259a3ef
4 changed files with 11 additions and 11 deletions

View File

@@ -49,7 +49,7 @@ def createStandardResFile(filename):
if not filename:
filename = getFilename() + '.zip'
createResZipFile( filename )
print >> sys.stderr, 'Created Resource Package for Standard Distribution: {0}'.format( filename)
print('Created Resource Package for Standard Distribution: {0}'.format(filename), file=sys.stderr)
def createIosResFile(filename):
print('Preparing Resource Package for iOS')
@@ -61,7 +61,7 @@ def createIosResFile(filename):
zip_file.write("../../iOS/Res/rules/modrules.xml", "rules/modrules.xml", zipfile.ZIP_STORED)
zip_file.close()
print >> sys.stderr, 'Created Resource Package for iOS Distribution: {0}'.format( filename)
print('Created Resource Package for Standard Distribution: {0}'.format(filename), file=sys.stderr)
class ZipUtilities: