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
1=== modified file 'lib/lp/soyuz/model/queue.py'
2--- lib/lp/soyuz/model/queue.py 2010-03-24 11:58:07 +0000
3+++ lib/lp/soyuz/model/queue.py 2010-03-25 03:49:28 +0000
4@@ -616,7 +616,7 @@
5 update_files_privacy(custom_file)
6 debug(logger,
7 "Re-uploaded custom file %s to librarian" %
8- new_file.filename)
9+ custom_file.libraryfilealias.filename)
10 if ISourcePackagePublishingHistory.providedBy(pub_record):
11 pas_verify = BuildDaemonPackagesArchSpecific(
12 config.builddmaster.root, self.distroseries)