From notifications-return-15479-archive-asf-public=cust-asf.ponee.io@libcloud.apache.org Fri Jun 28 17:33:24 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 73DB2180679 for ; Fri, 28 Jun 2019 19:33:24 +0200 (CEST) Received: (qmail 93762 invoked by uid 500); 28 Jun 2019 17:33:23 -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 93735 invoked by uid 500); 28 Jun 2019 17:33:23 -0000 Delivered-To: apmail-libcloud-commits@libcloud.apache.org Received: (qmail 93726 invoked by uid 99); 28 Jun 2019 17:33:23 -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; Fri, 28 Jun 2019 17:33:23 +0000 Received: by gitbox.apache.org (ASF Mail Server at gitbox.apache.org, from userid 33) id BA50C87AD8; Fri, 28 Jun 2019 17:33:23 +0000 (UTC) Date: Fri, 28 Jun 2019 17:33:24 +0000 To: "commits@libcloud.apache.org" Subject: [libcloud] 01/02: Fix script - use correct inspect.ismethod method. MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit From: tomaz@apache.org In-Reply-To: <156174320352.12231.11714663979510598506@gitbox.apache.org> References: <156174320352.12231.11714663979510598506@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: 49bb3717b9b6f8a5e776133917452ccdb703ab6d X-Git-NotificationType: diff X-Git-Multimail-Version: 1.5.dev Auto-Submitted: auto-generated Message-Id: <20190628173323.BA50C87AD8@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 49bb3717b9b6f8a5e776133917452ccdb703ab6d Author: Tomaz Muraus AuthorDate: Fri Jun 28 19:30:50 2019 +0200 Fix script - use correct inspect.ismethod method. --- contrib/generate_provider_feature_matrix_table.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/generate_provider_feature_matrix_table.py b/contrib/generate_provider_feature_matrix_table.py index 1428410..f74374a 100755 --- a/contrib/generate_provider_feature_matrix_table.py +++ b/contrib/generate_provider_feature_matrix_table.py @@ -288,9 +288,9 @@ def generate_providers_table(api): continue driver_methods = dict(inspect.getmembers(cls, - predicate=inspect.isfunction)) + predicate=inspect.ismethod)) base_methods = dict(inspect.getmembers(driver, - predicate=inspect.isfunction)) + predicate=inspect.ismethod)) base_api_methods = BASE_API_METHODS[api] result[name] = {'name': cls.name, 'website': cls.website,