~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/archivepublisher/publishing.py

Change all uses of 'initialise' to 'initialize'.

Show diffs side-by-side

added added

removed removed

Lines of Context:
108
108
 
109
109
 
110
110
def getPublisher(archive, allowed_suites, log, distsroot=None):
111
 
    """Return an initialised Publisher instance for the given context.
 
111
    """Return an initialized Publisher instance for the given context.
112
112
 
113
113
    The callsites can override the location where the archive indexes will
114
114
    be stored via 'distroot' argument.
143
143
 
144
144
    def __init__(self, log, config, diskpool, archive, allowed_suites=None,
145
145
                 library=None):
146
 
        """Initialise a publisher.
 
146
        """Initialize a publisher.
147
147
 
148
148
        Publishers need the pool root dir and a DiskPool object.
149
149