Return-Path: X-Original-To: apmail-cloudstack-commits-archive@www.apache.org Delivered-To: apmail-cloudstack-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id AB61F11BAC for ; Thu, 14 Aug 2014 13:31:57 +0000 (UTC) Received: (qmail 80486 invoked by uid 500); 14 Aug 2014 13:31:57 -0000 Delivered-To: apmail-cloudstack-commits-archive@cloudstack.apache.org Received: (qmail 80454 invoked by uid 500); 14 Aug 2014 13:31:57 -0000 Mailing-List: contact commits-help@cloudstack.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@cloudstack.apache.org Delivered-To: mailing list commits@cloudstack.apache.org Received: (qmail 80445 invoked by uid 99); 14 Aug 2014 13:31:57 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 14 Aug 2014 13:31:57 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 495789BED6F; Thu, 14 Aug 2014 13:31:57 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: bhaisaab@apache.org To: commits@cloudstack.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: cloudmonkey: fix line to make it PEP8 compliant Date: Thu, 14 Aug 2014 13:31:57 +0000 (UTC) Repository: cloudstack-cloudmonkey Updated Branches: refs/heads/master 5a6eafa2d -> cdc995359 cloudmonkey: fix line to make it PEP8 compliant Signed-off-by: Rohit Yadav Project: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/repo Commit: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/commit/cdc99535 Tree: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/tree/cdc99535 Diff: http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/diff/cdc99535 Branch: refs/heads/master Commit: cdc9953592e9c0faa768962658de4e7af7b64b14 Parents: 5a6eafa Author: Rohit Yadav Authored: Thu Aug 14 15:31:35 2014 +0200 Committer: Rohit Yadav Committed: Thu Aug 14 15:31:35 2014 +0200 ---------------------------------------------------------------------- cloudmonkey/cloudmonkey.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cloudstack-cloudmonkey/blob/cdc99535/cloudmonkey/cloudmonkey.py ---------------------------------------------------------------------- diff --git a/cloudmonkey/cloudmonkey.py b/cloudmonkey/cloudmonkey.py index 206e8f9..100a3cc 100644 --- a/cloudmonkey/cloudmonkey.py +++ b/cloudmonkey/cloudmonkey.py @@ -435,7 +435,8 @@ class CloudMonkeyShell(cmd.Cmd, object): Logout of session started with login with username and password """ try: - url = "%s://%s:%s%s" % (self.protocol, self.host, self.port, self.path) + url = "%s://%s:%s%s" % (self.protocol, self.host, + self.port, self.path) logout(url, self.credentials.get('session')) self.credentials['session'] = None self.credentials['sessionkey'] = None