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 C7C06200C7C for ; Thu, 13 Apr 2017 01:27:41 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id C68F9160BA8; Wed, 12 Apr 2017 23:27:41 +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 DA80B160BA9 for ; Thu, 13 Apr 2017 01:27:40 +0200 (CEST) Received: (qmail 33486 invoked by uid 500); 12 Apr 2017 23:27:40 -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 33412 invoked by uid 500); 12 Apr 2017 23:27:40 -0000 Delivered-To: apmail-libcloud-commits@libcloud.apache.org Received: (qmail 33402 invoked by uid 99); 12 Apr 2017 23:27:40 -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; Wed, 12 Apr 2017 23:27:40 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id D837BE9687; Wed, 12 Apr 2017 23:27:39 +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: Wed, 12 Apr 2017 23:27:42 -0000 Message-Id: In-Reply-To: <78550f87fe7b4d6ba72afebfdee407ec@git.apache.org> References: <78550f87fe7b4d6ba72afebfdee407ec@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [4/7] libcloud git commit: Linting with tox archived-at: Wed, 12 Apr 2017 23:27:42 -0000 Linting with tox Project: http://git-wip-us.apache.org/repos/asf/libcloud/repo Commit: http://git-wip-us.apache.org/repos/asf/libcloud/commit/010b7552 Tree: http://git-wip-us.apache.org/repos/asf/libcloud/tree/010b7552 Diff: http://git-wip-us.apache.org/repos/asf/libcloud/diff/010b7552 Branch: refs/heads/trunk Commit: 010b75525e60f83eb931712b8223f25442ced619 Parents: b806d3b Author: Joseph Hall Authored: Wed Apr 12 08:08:34 2017 -0600 Committer: Joseph Hall Committed: Wed Apr 12 08:08:34 2017 -0600 ---------------------------------------------------------------------- libcloud/compute/drivers/azure_arm.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/libcloud/blob/010b7552/libcloud/compute/drivers/azure_arm.py ---------------------------------------------------------------------- diff --git a/libcloud/compute/drivers/azure_arm.py b/libcloud/compute/drivers/azure_arm.py index 6ebe65f..03d8b2f 100644 --- a/libcloud/compute/drivers/azure_arm.py +++ b/libcloud/compute/drivers/azure_arm.py @@ -858,8 +858,8 @@ class AzureNodeDriver(NodeDriver): return [AzureNetworkSecurityGroup(net["id"], net["name"], net["location"], - net["properties"]) \ - for net in r.object["value"]] + net["properties"]) + for net in r.object["value"]] def ex_create_network_security_group(self, name, resource_group, location=None):