diff options
author | Jordi Vilalta Prat | 2010-10-12 02:18:11 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2010-10-12 02:18:11 +0000 |
commit | 8388e0dfea4ae0d80e51368acd12685c740c5bb5 (patch) | |
tree | f960376a145a830cd77b08264c1412f71ec02f7e /backends/vkeybd | |
parent | 43161858ac14bae4ac6dea114d8b3e7a8c1b293b (diff) | |
download | scummvm-rg350-8388e0dfea4ae0d80e51368acd12685c740c5bb5.tar.gz scummvm-rg350-8388e0dfea4ae0d80e51368acd12685c740c5bb5.tar.bz2 scummvm-rg350-8388e0dfea4ae0d80e51368acd12685c740c5bb5.zip |
JANITORAL: Clean trailing whitespaces.
svn-id: r53160
Diffstat (limited to 'backends/vkeybd')
-rwxr-xr-x | backends/vkeybd/packs/vkeybdpack.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/backends/vkeybd/packs/vkeybdpack.py b/backends/vkeybd/packs/vkeybdpack.py index 130e4b737b..b0cd4c45e9 100755 --- a/backends/vkeybd/packs/vkeybdpack.py +++ b/backends/vkeybd/packs/vkeybdpack.py @@ -16,9 +16,9 @@ def buildPack(packName): if not os.path.isdir(packName): print ("Invalid pack name: " + packName) return - + zf = zipfile.ZipFile(packName + ".zip", 'w') - + zf.compress_type = zipfile.ZIP_DEFLATED print ("Building '" + packName + "' pack:") @@ -28,9 +28,9 @@ def buildPack(packName): if os.path.isfile(filename) and not filename[0] == '.' and filename.endswith(PACK_FILE_EXTENSIONS): zf.write(filename, './' + filename, compress_type=compression) print (" Adding file: " + filename) - + os.chdir('../') - + zf.close() def buildAllPacks(): @@ -49,13 +49,13 @@ def printUsage(): print (" Builds the pack called 'packname'.\n") def main(): - + if len(sys.argv) == 2 and sys.argv[1] == "makeall": buildAllPacks() - + elif len(sys.argv) == 3 and sys.argv[1] == "make": buildPack(sys.argv[2]) - + else: printUsage() |