launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #04679
[Merge] lp:~stevenk/launchpad/bprc-spelling-is-hard into lp:launchpad
Steve Kowalik has proposed merging lp:~stevenk/launchpad/bprc-spelling-is-hard into lp:launchpad.
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~stevenk/launchpad/bprc-spelling-is-hard/+merge/72157
*facepalm*
--
https://code.launchpad.net/~stevenk/launchpad/bprc-spelling-is-hard/+merge/72157
Your team Launchpad code reviewers is requested to review the proposed merge of lp:~stevenk/launchpad/bprc-spelling-is-hard into lp:launchpad.
=== modified file 'lib/lp/soyuz/model/binarypackagereleasecontents.py'
--- lib/lp/soyuz/model/binarypackagereleasecontents.py 2011-06-24 11:14:11 +0000
+++ lib/lp/soyuz/model/binarypackagereleasecontents.py 2011-08-19 10:03:26 +0000
@@ -30,16 +30,16 @@
"""See `IBinaryPackageReleaseContents`."""
implements(IBinaryPackageReleaseContents)
__storm_table__ = 'BinaryPackageReleaseContents'
- __storm_primary__ = ("binarypackagerelease_id", "binaypackagepath_id")
+ __storm_primary__ = ("binarypackagerelease_id", "binarypackagepath_id")
binarypackagerelease_id = Int(
name='binarypackagerelease', allow_none=False)
binarypackagerelease = Reference(
binarypackagerelease_id, 'BinaryPackageRelease.id')
- binaypackagepath_id = Int(name='binarypackagepath', allow_none=False)
+ binarypackagepath_id = Int(name='binarypackagepath', allow_none=False)
binarypackagepath = Reference(
- binaypackagepath_id, 'BinaryPackagePath.id')
+ binarypackagepath_id, 'BinaryPackagePath.id')
def add(self, bpr):
"""See `IBinaryPackageReleaseContentsSet`."""
Follow ups