From 7da61abf33a14c9cf913036740707d58944886b0 Mon Sep 17 00:00:00 2001 From: rdb Date: Thu, 30 Jul 2009 07:38:26 +0000 Subject: [PATCH] Fix small but deadly typo --- direct/src/plugin/make_package.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/direct/src/plugin/make_package.py b/direct/src/plugin/make_package.py index e9933a6424..ecba59460d 100755 --- a/direct/src/plugin/make_package.py +++ b/direct/src/plugin/make_package.py @@ -210,9 +210,9 @@ def makePackage(args): if len(tokens) >= 1: pm.packageName = tokens[0] if len(tokens) >= 2: - pm.packagePlatform = tokens[2] + pm.packagePlatform = tokens[1] if len(tokens) >= 3: - pm.packageVersion = tokens[1] + pm.packageVersion = tokens[2] if len(tokens) >= 4: raise ArgumentError, 'Too many tokens in string: %s' % (value)