~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugin.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2007-11-13 20:49:38 UTC
  • mfrom: (2967.4.10 103023)
  • Revision ID: pqm@pqm.ubuntu.com-20071113204938-n5t7vld9jwo0hv4v
(Daniel Watkins) Fix bug #103023 by giving a nice way of resolving
        when a plugin has a bad name

Show diffs side-by-side

added added

removed removed

Lines of Context:
191
191
        except Exception, e:
192
192
            ## import pdb; pdb.set_trace()
193
193
            if re.search('\.|-| ', name):
194
 
                warning('Unable to load plugin %r from %r: '
195
 
                    'It is not a valid python module name.' % (name, d))
 
194
                sanitised_name = re.sub('[-. ]', '_', name)
 
195
                warning("Unable to load %r in %r as a plugin because file path"
 
196
                        " isn't a valid module name; try renaming it to %r."
 
197
                        % (name, d, sanitised_name))
196
198
            else:
197
199
                warning('Unable to load plugin %r from %r' % (name, d))
198
200
            log_exception_quietly()