From notifications-return-15638-archive-asf-public=cust-asf.ponee.io@libcloud.apache.org Mon Jul 15 21:29:57 2019 Return-Path: X-Original-To: archive-asf-public@cust-asf.ponee.io Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [207.244.88.153]) by mx-eu-01.ponee.io (Postfix) with SMTP id D2EA9180695 for ; Mon, 15 Jul 2019 23:29:55 +0200 (CEST) Received: (qmail 12383 invoked by uid 500); 15 Jul 2019 21:29:55 -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 12218 invoked by uid 500); 15 Jul 2019 21:29:55 -0000 Delivered-To: apmail-libcloud-commits@libcloud.apache.org Received: (qmail 12181 invoked by uid 99); 15 Jul 2019 21:29:55 -0000 Received: from ec2-52-202-80-70.compute-1.amazonaws.com (HELO gitbox.apache.org) (52.202.80.70) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Jul 2019 21:29:55 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id D3B0F85E20; Mon, 15 Jul 2019 21:29:54 +0000 (UTC) Date: Mon, 15 Jul 2019 21:30:00 +0000 To: "commits@libcloud.apache.org" Subject: [libcloud] 06/19: fixed typo in exception in create_node MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: tomaz@apache.org In-Reply-To: <156322619431.8904.17050832825030116906@gitbox.apache.org> References: <156322619431.8904.17050832825030116906@gitbox.apache.org> X-Git-Host: gitbox.apache.org X-Git-Repo: libcloud X-Git-Refname: refs/heads/trunk X-Git-Reftype: branch X-Git-Rev: 454ed2baff898cbc5df4dfc058088c190c1251c1 X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190715212954.D3B0F85E20@gitbox.apache.org> This is an automated email from the ASF dual-hosted git repository. tomaz pushed a commit to branch trunk in repository https://gitbox.apache.org/repos/asf/libcloud.git commit 454ed2baff898cbc5df4dfc058088c190c1251c1 Author: Sydney Weber AuthorDate: Mon Jul 15 15:43:29 2019 +0200 fixed typo in exception in create_node --- libcloud/compute/drivers/gridscale.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libcloud/compute/drivers/gridscale.py b/libcloud/compute/drivers/gridscale.py index 315f1e2..3fdfabb 100644 --- a/libcloud/compute/drivers/gridscale.py +++ b/libcloud/compute/drivers/gridscale.py @@ -228,7 +228,7 @@ class GridscaleNodeDriver(GridscaleBaseDriver): if size.ram % 1024 != 0: raise Exception('Value not accepted. Use a multiple of 1024 e.g.' - '1024, 2048, 3096...') + '1024, 2048, 3072...') data = { 'name': name, 'cores': size.extra['cores'],