Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEben Eliason <eben@sugar.(none)>2008-06-13 20:29:51 (GMT)
committer Eben Eliason <eben@sugar.(none)>2008-06-13 20:29:51 (GMT)
commit3e86ce8b89523b66c67b558b322894ed7a30e1d0 (patch)
tree70911a2d18228bf2be69d687542fd65ecae2247c /src
parent3f4a809b80a1561a3b29f02802d1f2cd06584f61 (diff)
Fix undefined bundle_top_dir reference
Diffstat (limited to 'src')
-rw-r--r--src/sugar/activity/bundlebuilder.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sugar/activity/bundlebuilder.py b/src/sugar/activity/bundlebuilder.py
index fd59233..2480b03 100644
--- a/src/sugar/activity/bundlebuilder.py
+++ b/src/sugar/activity/bundlebuilder.py
@@ -198,7 +198,7 @@ def cmd_dev(config, options, args):
bundle_path = env.get_user_activities_path()
if not os.path.isdir(bundle_path):
os.mkdir(bundle_path)
- bundle_path = os.path.join(bundle_path, config.bundle_top_dir)
+ bundle_path = os.path.join(bundle_path, config.bundle_root_dir)
try:
os.symlink(config.source_dir, bundle_path)
except OSError: