From 3e86ce8b89523b66c67b558b322894ed7a30e1d0 Mon Sep 17 00:00:00 2001 From: Eben Eliason Date: Fri, 13 Jun 2008 20:29:51 +0000 Subject: Fix undefined bundle_top_dir reference --- (limited to 'src') 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: -- cgit v0.9.1