From 3e86ce8b89523b66c67b558b322894ed7a30e1d0 Mon Sep 17 00:00:00 2001 From: Eben Eliason Date: Fri, 13 Jun 2008 16:29:51 -0400 Subject: [PATCH] Fix undefined bundle_top_dir reference --- src/sugar/activity/bundlebuilder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sugar/activity/bundlebuilder.py b/src/sugar/activity/bundlebuilder.py index fd592330..2480b03d 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: