From patchwork Wed Mar 7 05:12:13 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: 7132 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 4AC8A23E74 for ; Wed, 7 Mar 2012 05:12:17 +0000 (UTC) Received: from mail-iy0-f180.google.com (mail-iy0-f180.google.com [209.85.210.180]) by fiordland.canonical.com (Postfix) with ESMTP id 09A0EA18441 for ; Wed, 7 Mar 2012 05:12:16 +0000 (UTC) Received: by iage36 with SMTP id e36so10882017iag.11 for ; Tue, 06 Mar 2012 21:12:16 -0800 (PST) Received: by 10.50.158.133 with SMTP id wu5mr11019490igb.50.1331097136365; Tue, 06 Mar 2012 21:12:16 -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.53.18 with SMTP id k18csp2336ibg; Tue, 6 Mar 2012 21:12:15 -0800 (PST) Received: by 10.180.96.8 with SMTP id do8mr23242798wib.21.1331097135017; Tue, 06 Mar 2012 21:12:15 -0800 (PST) Received: from indium.canonical.com (indium.canonical.com. [91.189.90.7]) by mx.google.com with ESMTPS id fh5si15130940wib.3.2012.03.06.21.12.14 (version=TLSv1/SSLv3 cipher=OTHER); Tue, 06 Mar 2012 21:12:15 -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 1S59Ab-0006j6-PC for ; Wed, 07 Mar 2012 05:12:13 +0000 Received: from ackee.canonical.com (localhost [127.0.0.1]) by ackee.canonical.com (Postfix) with ESMTP id B4CC1E01ED for ; Wed, 7 Mar 2012 05:12:13 +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: 145 X-Launchpad-Notification-Type: branch-revision To: Linaro Patch Tracker From: noreply@launchpad.net Subject: [Branch ~linaro-validation/lava-scheduler/trunk] Rev 145: whoops, i accidentally committed broken code to trunk again... Message-Id: <20120307051213.8207.5059.launchpad@ackee.canonical.com> Date: Wed, 07 Mar 2012 05:12:13 -0000 Reply-To: noreply@launchpad.net Sender: bounces@canonical.com Errors-To: bounces@canonical.com Precedence: bulk X-Generated-By: Launchpad (canonical.com); Revision="14907"; Instance="launchpad-lazr.conf" X-Launchpad-Hash: be70d25f355a03ebf7a52f9898d96fff24fe91d5 X-Gm-Message-State: ALoCoQmQ0yQkXRyBczwwg7G6HX+YG4jeH0JqdruwAcxUJwmdlNvblPtZ/p+jgRUbrN6gHK2bVx3i ------------------------------------------------------------ revno: 145 committer: Michael Hudson-Doyle branch nick: trunk timestamp: Wed 2012-03-07 18:10:27 +1300 message: whoops, i accidentally committed broken code to trunk again... modified: lava_scheduler_app/tables.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/tables.py' --- lava_scheduler_app/tables.py 2012-03-07 01:59:51 +0000 +++ lava_scheduler_app/tables.py 2012-03-07 05:10:27 +0000 @@ -77,7 +77,7 @@ def json(cls, request, params=()): table = cls(None, None, params, _for_rendering=False) table.context = RequestContext(request) - our_cols = [_ColWrapper(name, table) for name in table.columns] + our_cols = [_ColWrapper(name, table) for name in table.columns.names()] return DataTableView.as_view( backend=QuerySetBackend( queryset=table.get_queryset(),