+branch/ubiquity

« back to all changes in this revision

Viewing changes to ubiquity/plugin_manager.py

  • Committer: Evan Dandrea
  • Date: 2010-06-16 07:58:33 UTC
  • mfrom: (3920.1.14 testing)
  • Revision ID: evan.dandrea@canonical.com-20100616075833-z28qd49gkqaguhs6
Merge testing branch.  Ubiquity now has a test harness in tests/

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 = []