From patchwork Wed Feb 8 22:07:12 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael-Doyle Hudson X-Patchwork-Id: 6713 Return-Path: X-Original-To: patchwork@peony.canonical.com Delivered-To: patchwork@peony.canonical.com Received: from fiordland.canonical.com (fiordland.canonical.com [91.189.94.145]) by peony.canonical.com (Postfix) with ESMTP id 5E3D223EAE for ; Wed, 8 Feb 2012 22:07:16 +0000 (UTC) Received: from mail-gy0-f180.google.com (mail-gy0-f180.google.com [209.85.160.180]) by fiordland.canonical.com (Postfix) with ESMTP id 0870BA18103 for ; Wed, 8 Feb 2012 22:07:15 +0000 (UTC) Received: by ghbz22 with SMTP id z22so704289ghb.11 for ; Wed, 08 Feb 2012 14:07:15 -0800 (PST) Received: by 10.50.15.231 with SMTP id a7mr36603512igd.8.1328738835449; Wed, 08 Feb 2012 14:07:15 -0800 (PST) X-Forwarded-To: linaro-patchwork@canonical.com X-Forwarded-For: patch@linaro.org linaro-patchwork@canonical.com Delivered-To: patches@linaro.org Received: by 10.231.12.131 with SMTP id x3cs21177ibx; Wed, 8 Feb 2012 14:07:14 -0800 (PST) Received: by 10.180.100.33 with SMTP id ev1mr12132062wib.3.1328738834061; Wed, 08 Feb 2012 14:07:14 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id a21si408108wed.25.2012.02.08.14.07.13 (version=TLSv1/SSLv3 cipher=OTHER); Wed, 08 Feb 2012 14:07:14 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) client-ip=91.189.90.7; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of bounces@canonical.com designates 91.189.90.7 as permitted sender) smtp.mail=bounces@canonical.com Received: from ackee.canonical.com ([91.189.89.26]) by indium.canonical.com with esmtp (Exim 4.71 #1 (Debian)) id 1RvFfU-0002j6-N2 for ; Wed, 08 Feb 2012 22:07:12 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id 8BF94E040B for ; Wed, 8 Feb 2012 22:07:12 +0000 (UTC) MIME-Version: 1.0 X-Launchpad-Project: lava-scheduler X-Launchpad-Branch: ~linaro-validation/lava-scheduler/trunk X-Launchpad-Message-Rationale: Subscriber X-Launchpad-Branch-Revision-Number: 126 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-scheduler/trunk] Rev 126: add blank=True to TestJob.submit_token Message-Id: <20120208220712.16720.44514.launchpad@ackee.canonical.com> Date: Wed, 08 Feb 2012 22:07:12 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14747"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: 9573255f75431bb9b0a688455dfbc09d7cc79597 ------------------------------------------------------------ revno: 126 committer: Michael Hudson-Doyle branch nick: trunk timestamp: Wed 2012-02-08 14:05:30 -0800 message: add blank=True to TestJob.submit_token modified: lava_scheduler_app/models.py --- lp:lava-scheduler https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk You are subscribed to branch lp:lava-scheduler. To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-scheduler/trunk/+edit-subscription === modified file 'lava_scheduler_app/models.py' --- lava_scheduler_app/models.py 2012-01-30 22:26:03 +0000 +++ lava_scheduler_app/models.py 2012-02-08 22:05:30 +0000 @@ -136,7 +136,7 @@ verbose_name = _(u"Submitter"), ) - submit_token = models.ForeignKey(AuthToken, null=True) + submit_token = models.ForeignKey(AuthToken, null=True, blank=True) description = models.CharField( verbose_name = _(u"Description"),