Merge lp:~stevenk/launchpad/fix-typo-for-bug-503258 into lp:launchpad

Proposed by Steve Kowalik
Status: Merged
Approved by: Michael Hudson-Doyle
Approved revision: no longer in the source branch.
Merged at revision: not available
Proposed branch: lp:~stevenk/launchpad/fix-typo-for-bug-503258
Merge into: lp:launchpad
Diff against target: 12 lines (+1/-1)
1 file modified
lib/lp/soyuz/model/queue.py (+1/-1)
To merge this branch: bzr merge lp:~stevenk/launchpad/fix-typo-for-bug-503258
Reviewer Review Type Date Requested Status
Michael Hudson-Doyle Approve
Review via email: mp+22098@code.launchpad.net

Commit message

Use the correct variable in the debug print while copying custom files to the librarian.

Description of the change

This branches fixes a typo I noticed after my branch that fixes custom files landed, and corrects it.

To post a comment you must log in.
Revision history for this message
Michael Hudson-Doyle (mwhudson) wrote :

Looks fine.

review: Approve

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
=== modified file 'lib/lp/soyuz/model/queue.py'
--- lib/lp/soyuz/model/queue.py 2010-03-24 11:58:07 +0000
+++ lib/lp/soyuz/model/queue.py 2010-03-25 03:49:28 +0000
@@ -616,7 +616,7 @@
616 update_files_privacy(custom_file)616 update_files_privacy(custom_file)
617 debug(logger,617 debug(logger,
618 "Re-uploaded custom file %s to librarian" %618 "Re-uploaded custom file %s to librarian" %
619 new_file.filename)619 custom_file.libraryfilealias.filename)
620 if ISourcePackagePublishingHistory.providedBy(pub_record):620 if ISourcePackagePublishingHistory.providedBy(pub_record):
621 pas_verify = BuildDaemonPackagesArchSpecific(621 pas_verify = BuildDaemonPackagesArchSpecific(
622 config.builddmaster.root, self.distroseries)622 config.builddmaster.root, self.distroseries)