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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user