~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/config/__init__.py

  • Committer: Launchpad Patch Queue Manager
  • Date: 2012-01-06 18:59:36 UTC
  • mfrom: (14645.1.1 typos)
  • Revision ID: launchpad@pqm.canonical.com-20120106185936-c36ko9sfri1s2lkd
[r=bac][no-qa] Fix a slew of typos.

Show diffs side-by-side

added added

removed removed

Lines of Context:
365
365
 
366
366
 
367
367
def commalist(value):
368
 
    """ZConfig validator for a comma seperated list"""
 
368
    """ZConfig validator for a comma separated list"""
369
369
    return [v.strip() for v in value.split(',')]
370
370
 
371
371
 
450
450
        """
451
451
        for attr, value in kwargs.iteritems():
452
452
            assert attr in self._db_config_attrs, (
453
 
                "%s cannot be overriden" % attr)
 
453
                "%s cannot be overridden" % attr)
454
454
            if value is None:
455
455
                if hasattr(self.overrides, attr):
456
456
                    delattr(self.overrides, attr)