~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/config.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-10-05 00:14:36 UTC
  • mfrom: (2055.2.2 lockdir-no-email)
  • Revision ID: pqm@pqm.ubuntu.com-20061005001436-917ac78b08565d62
(John Meinel) don't require a valid email for LockDir

Show diffs side-by-side

added added

removed removed

Lines of Context:
698
698
    """
699
699
    m = re.search(r'[\w+.-]+@[\w+.-]+', e)
700
700
    if not m:
701
 
        raise errors.BzrError("%r doesn't seem to contain "
702
 
                              "a reasonable email address" % e)
 
701
        raise errors.NoEmailInUsername(e)
703
702
    return m.group(0)
704
703
 
705
704