~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/services/scripts/base.py

  • Committer: Colin Watson
  • Date: 2012-01-06 11:08:30 UTC
  • mto: This revision was merged to the branch mainline in revision 14650.
  • Revision ID: cjwatson@canonical.com-20120106110830-l6lj4zfbixcubel2
Fix a slew of typos that have been annoying me.

Show diffs side-by-side

added added

removed removed

Lines of Context:
352
352
            profiler.dump_stats(self.options.profile)
353
353
 
354
354
    def _init_zca(self, use_web_security):
355
 
        """Initialize the ZCA, this can be overriden for testing purpose."""
 
355
        """Initialize the ZCA, this can be overridden for testing purposes."""
356
356
        scripts.execute_zcml_for_scripts(use_web_security=use_web_security)
357
357
 
358
358
    def _init_db(self, isolation):
359
359
        """Initialize the database transaction.
360
360
 
361
 
        Can be overriden for testing purpose.
 
361
        Can be overridden for testing purposes.
362
362
        """
363
363
        dbuser = self.dbuser
364
364
        if dbuser is None: