Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4B41A200B17 for ; Tue, 7 Jun 2016 02:46:25 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 4A089160A24; Tue, 7 Jun 2016 00:46:25 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id A81A1160A69 for ; Tue, 7 Jun 2016 02:46:23 +0200 (CEST) Received: (qmail 69933 invoked by uid 500); 7 Jun 2016 00:46:22 -0000 Mailing-List: contact notifications-help@libcloud.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@libcloud.apache.org Delivered-To: mailing list notifications@libcloud.apache.org Received: (qmail 69519 invoked by uid 500); 7 Jun 2016 00:46:22 -0000 Delivered-To: apmail-libcloud-commits@libcloud.apache.org Received: (qmail 69477 invoked by uid 99); 7 Jun 2016 00:46:22 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Jun 2016 00:46:22 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 68E04E974B; Tue, 7 Jun 2016 00:46:22 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: anthonyshaw@apache.org To: commits@libcloud.apache.org Date: Tue, 07 Jun 2016 00:46:40 -0000 Message-Id: <8a2f80ebd9774b4b839e88830bf832fc@git.apache.org> In-Reply-To: <4c06238320624b3a95b4635166b650b8@git.apache.org> References: <4c06238320624b3a95b4635166b650b8@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [19/28] libcloud git commit: fix linting errors archived-at: Tue, 07 Jun 2016 00:46:25 -0000 fix linting errors Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/4d57bef9 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/4d57bef9 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/4d57bef9 Branch: refs/heads/trunk Commit: 4d57bef965fdebe2d34abdb5cf3a8945f56f0770 Parents: 09380b3 Author: anthony-shaw Authored: Mon Jun 6 22:36:05 2016 +1000 Committer: anthony-shaw Committed: Mon Jun 6 22:36:05 2016 +1000 ---------------------------------------------------------------------- libcloud/compute/drivers/dimensiondata.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/4d57bef9/libcloud/compute/drivers/dimensiondata.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/dimensiondata.py b/libcloud/compute/drivers/dimensiondata.py index 8f2abea..55a3467 100644 --- a/libcloud/compute/drivers/dimensiondata.py +++ b/libcloud/compute/drivers/dimensiondata.py @@ -2357,8 +2357,8 @@ class DimensionDataNodeDriver(NodeDriver): """ datacenter_id = self._location_to_location_id(location) result = self.connection.raw_request_with_orgId_api_1( - 'backup/detailedUsageReport?datacenterId=%s&fromDate=%s&toDate=%s' % - (datacenter_id, start_date, end_date)) + 'backup/detailedUsageReport?datacenterId=%s&fromDate=%s&toDate=%s' + % (datacenter_id, start_date, end_date)) return result.response.body @staticmethod