Merge lp:~cjwatson/launchpad/assorted-typos into lp:launchpad

Proposed by Colin Watson
Status: Merged
Merged at revision: 18835
Proposed branch: lp:~cjwatson/launchpad/assorted-typos
Merge into: lp:launchpad
Diff against target: 78 lines (+7/-6)
6 files modified
lib/lp/app/utilities/celebrities.py (+1/-1)
lib/lp/archivepublisher/customupload.py (+1/-1)
lib/lp/archiveuploader/nascentupload.py (+1/-1)
lib/lp/code/interfaces/hasgitrepositories.py (+2/-1)
lib/lp/registry/services/sharingservice.py (+1/-1)
lib/lp/soyuz/scripts/ppakeygenerator.py (+1/-1)
To merge this branch: bzr merge lp:~cjwatson/launchpad/assorted-typos
Reviewer Review Type Date Requested Status
William Grant code Approve
Review via email: mp+360066@code.launchpad.net

Commit message

Fix an assortment of minor typos.

To post a comment you must log in.
Revision history for this message
William Grant (wgrant) wrote :

But how

review: Approve (code)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'lib/lp/app/utilities/celebrities.py'
--- lib/lp/app/utilities/celebrities.py 2016-04-11 08:31:24 +0000
+++ lib/lp/app/utilities/celebrities.py 2018-12-04 15:06:53 +0000
@@ -22,7 +22,7 @@
22class MutatedCelebrityError(Exception):22class MutatedCelebrityError(Exception):
23 """A celebrity has had its id or name changed in the database.23 """A celebrity has had its id or name changed in the database.
2424
25 This would indicate a major prodution screwup.25 This would indicate a major production screwup.
26 """26 """
2727
2828
2929
=== modified file 'lib/lp/archivepublisher/customupload.py'
--- lib/lp/archivepublisher/customupload.py 2018-05-06 08:52:34 +0000
+++ lib/lp/archivepublisher/customupload.py 2018-12-04 15:06:53 +0000
@@ -89,7 +89,7 @@
89 """A build for this type, architecture, and version already exists."""89 """A build for this type, architecture, and version already exists."""
90 def __init__(self, custom_type, arch, version):90 def __init__(self, custom_type, arch, version):
91 message = ('%s build %s for architecture %s already exists' %91 message = ('%s build %s for architecture %s already exists' %
92 (custom_type, arch, version))92 (custom_type, version, arch))
93 CustomUploadError.__init__(self, message)93 CustomUploadError.__init__(self, message)
9494
9595
9696
=== modified file 'lib/lp/archiveuploader/nascentupload.py'
--- lib/lp/archiveuploader/nascentupload.py 2017-09-17 10:35:57 +0000
+++ lib/lp/archiveuploader/nascentupload.py 2018-12-04 15:06:53 +0000
@@ -343,7 +343,7 @@
343 # by one.343 # by one.
344 max += 1344 max += 1
345 if len(considered_archs) > max:345 if len(considered_archs) > max:
346 self.reject("Upload has more architetures than it is supported.")346 self.reject("Upload has more architectures than is supported.")
347347
348 def _matchDDEBs(self):348 def _matchDDEBs(self):
349 """Check and link DEBs and DDEBs in the upload.349 """Check and link DEBs and DDEBs in the upload.
350350
=== modified file 'lib/lp/code/interfaces/hasgitrepositories.py'
--- lib/lp/code/interfaces/hasgitrepositories.py 2015-03-05 16:23:26 +0000
+++ lib/lp/code/interfaces/hasgitrepositories.py 2018-12-04 15:06:53 +0000
@@ -17,7 +17,8 @@
17 """An object that has related Git repositories.17 """An object that has related Git repositories.
1818
19 A project contains Git repositories, a source package on a distribution19 A project contains Git repositories, a source package on a distribution
20 contains branches, and a person contains "personal" branches.20 contains Git repositories, and a person contains "personal" Git
21 repositories.
21 """22 """
2223
23 export_as_webservice_entry(24 export_as_webservice_entry(
2425
=== modified file 'lib/lp/registry/services/sharingservice.py'
--- lib/lp/registry/services/sharingservice.py 2015-10-01 10:25:19 +0000
+++ lib/lp/registry/services/sharingservice.py 2018-12-04 15:06:53 +0000
@@ -87,7 +87,7 @@
87 """Service providing operations for adding and removing pillar grantees.87 """Service providing operations for adding and removing pillar grantees.
8888
89 Service is accessed via a url of the form89 Service is accessed via a url of the form
90 '/services/sharing?ws.op=...90 '/+services/sharing?ws.op=...
91 """91 """
9292
93 @property93 @property
9494
=== modified file 'lib/lp/soyuz/scripts/ppakeygenerator.py'
--- lib/lp/soyuz/scripts/ppakeygenerator.py 2015-09-26 02:02:11 +0000
+++ lib/lp/soyuz/scripts/ppakeygenerator.py 2018-12-04 15:06:53 +0000
@@ -19,7 +19,7 @@
1919
20class PPAKeyGenerator(LaunchpadCronScript):20class PPAKeyGenerator(LaunchpadCronScript):
2121
22 usage = '%prog [-p PPA owner]'22 usage = '%prog [-A archive-reference]'
23 description = 'Generate a GPG signing key for PPAs.'23 description = 'Generate a GPG signing key for PPAs.'
2424
25 def add_my_options(self):25 def add_my_options(self):