From patchwork Mon May 30 20:18:00 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Herton Ronaldo Krzesinski X-Patchwork-Id: 97951 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id 53A8BB6F6E for ; Tue, 31 May 2011 06:18:21 +1000 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1QR8ud-0007Bz-UY; Mon, 30 May 2011 20:18:07 +0000 Received: from adelie.canonical.com ([91.189.90.139]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1QR8uc-0007Bu-Bb for kernel-team@lists.ubuntu.com; Mon, 30 May 2011 20:18:06 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by adelie.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1QR8uc-0000wt-54 for ; Mon, 30 May 2011 20:18:06 +0000 Received: from 201.47.18.92.dynamic.adsl.gvt.net.br ([201.47.18.92] helo=canonical.com) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1QR8ub-00060k-KY for kernel-team@lists.ubuntu.com; Mon, 30 May 2011 20:18:06 +0000 From: Herton Ronaldo Krzesinski To: kernel-team@lists.ubuntu.com Subject: [PATCH][[kteam-tools] stable/create-release-tracker: fix wrong variable used in error message Date: Mon, 30 May 2011 17:18:00 -0300 Message-Id: <1306786680-8541-1-git-send-email-herton.krzesinski@canonical.com> X-Mailer: git-send-email 1.7.4.1 X-BeenThere: kernel-team@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Kernel team discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: kernel-team-bounces@lists.ubuntu.com Errors-To: kernel-team-bounces@lists.ubuntu.com Invalid task names were being printed in the case an workflow task was found without automatic assignee. Signed-off-by: Herton Ronaldo Krzesinski --- stable/create-release-tracker | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/stable/create-release-tracker b/stable/create-release-tracker index fb55320..d188573 100755 --- a/stable/create-release-tracker +++ b/stable/create-release-tracker @@ -238,7 +238,7 @@ class CreateTrackingBug(StdApp): if task in taskAssignments: t.assignee = self.lp.launchpad.people[taskAssignments[task]] else: - print 'Warning: Found a workflow task named %s with no automatic assignee, leaving unassigned' % s.name + print 'Warning: Found a workflow task named %s with no automatic assignee, leaving unassigned' % task #------------------------------------------------------------------------------------- # C H A N G E L O G W O R K