~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/codehosting/__init__.py

  • Committer: Aaron Bentley
  • Date: 2008-01-21 05:44:15 UTC
  • mto: This revision was merged to the branch mainline in revision 5586.
  • Revision ID: aaron@canonical.com-20080121054415-zjklfqnpbqe25v81
Quicksave

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
 
10
10
 
11
11
import os.path
 
12
from bzrlib.plugin import set_plugins_path
12
13
from bzrlib.progress import ProgressBarStack
13
14
from bzrlib.ui import SilentUIFactory
14
15
 
59
60
 
60
61
def get_bzr_plugins_path():
61
62
    """Find the path to the Bazaar plugins for this rocketfuel instance"""
62
 
    return get_rocketfuel_root() + '/bzr-plugins'
 
63
    return get_rocketfuel_root() + '/bzrplugins'
 
64
 
 
65
 
 
66
os.environ['BZR_PLUGIN_PATH'] = get_bzr_plugins_path()
 
67
set_plugins_path()