~jcsackett/launchpad/series-need-usage-attributes-643902

« back to all changes in this revision

Viewing changes to lib/lp/registry/model/distroseries.py

  • Committer: Ian Booth
  • Date: 2010-09-14 21:32:16 UTC
  • mfrom: (11542 launchpad)
  • mto: This revision was merged to the branch mainline in revision 11564.
  • Revision ID: ian.booth@canonical.com-20100914213216-2cg4edr4sbglh1wo
Code review fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
1188
1188
        dsc_maintainer_rfc822, dsc_standards_version, dsc_format,
1189
1189
        dsc_binaries, archive, copyright, build_conflicts,
1190
1190
        build_conflicts_indep, dateuploaded=DEFAULT,
1191
 
        source_package_recipe_build=None):
 
1191
        source_package_recipe_build=None, user_defined_fields=None,
 
1192
        homepage=None):
1192
1193
        """See `IDistroSeries`."""
1193
1194
        return SourcePackageRelease(
1194
1195
            upload_distroseries=self, sourcepackagename=sourcepackagename,
1204
1205
            dsc_format=dsc_format, dsc_binaries=dsc_binaries,
1205
1206
            build_conflicts=build_conflicts,
1206
1207
            build_conflicts_indep=build_conflicts_indep,
1207
 
            source_package_recipe_build=source_package_recipe_build)
 
1208
            source_package_recipe_build=source_package_recipe_build,
 
1209
            user_defined_fields=user_defined_fields, homepage=homepage)
1208
1210
 
1209
1211
    def getComponentByName(self, name):
1210
1212
        """See `IDistroSeries`."""