Bundelbuilder should not use localized activity name #1968 (Walter Bender)

The localized activity name is only used for
user-facing strings. The .xo and .tar files are
left in the original name.
This commit is contained in:
Simon Schampijer
2010-06-03 08:56:42 +02:00
parent 883fefe782
commit 3aa0995096
2 changed files with 11 additions and 3 deletions
+1 -1
View File
@@ -82,7 +82,7 @@ class Config(object):
def update(self):
self.bundle = bundle = ActivityBundle(self.source_dir)
self.version = bundle.get_activity_version()
self.activity_name = bundle.get_name()
self.activity_name = bundle.get_bundle_name()
self.bundle_id = bundle.get_bundle_id()
self.bundle_name = reduce(lambda x, y: x+y, self.activity_name.split())
self.bundle_root_dir = self.bundle_name + '.activity'