+branch/ubiquity

« back to all changes in this revision

Viewing changes to ubiquity/plugin_manager.py

  • Committer: Evan Dandrea
  • Date: 2010-04-08 13:58:29 UTC
  • mto: This revision was merged to the branch mainline in revision 4123.
  • Revision ID: evan.dandrea@canonical.com-20100408135829-y6ljaxt00y84xuf4
Initial commit of test work.

Show diffs side-by-side

added added

removed removed

Lines of Context:
22
22
import os
23
23
import fnmatch
24
24
 
25
 
PLUGIN_PATH = '/usr/lib/ubiquity/plugins'
 
25
PLUGIN_PATH = (os.environ.get('UBIQUITY_PLUGIN_PATH', False)
 
26
               or '/usr/lib/ubiquity/plugins')
26
27
 
27
28
def load_plugins():
28
29
    modules = []