From 2c2744f6fb3c38a5053be78e998e6233d6ad4035 Mon Sep 17 00:00:00 2001 From: xawotihs Date: Sun, 24 Aug 2014 17:40:05 +0200 Subject: [PATCH] Fixed python issue --- projects/mtg/bin/createWindowsZip.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/projects/mtg/bin/createWindowsZip.py b/projects/mtg/bin/createWindowsZip.py index f89c885a7..8b2e7e4d9 100644 --- a/projects/mtg/bin/createWindowsZip.py +++ b/projects/mtg/bin/createWindowsZip.py @@ -32,8 +32,9 @@ def createStandardResFile(): os.system(cmd) os.chdir("..") print "Creating Windows Package File" - createWindowsZipFile( 'Wagic-windows.zip' ) - print >> sys.stderr, 'Created Resource Package for Standard Distribution: {0}'.format( filename) + filename = 'Wagic-windows.zip' + createWindowsZipFile( filename ) + print >> sys.stderr, 'Created Windows Package: {0}'.format( filename) class ZipUtilities: