From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 787C11384B4 for ; Sun, 8 Nov 2015 03:21:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28231E0871; Sun, 8 Nov 2015 03:21:27 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AA82FE0871 for ; Sun, 8 Nov 2015 03:21:26 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id CC0F53404B1 for ; Sun, 8 Nov 2015 03:21:25 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id F06851DE for ; Sun, 8 Nov 2015 03:21:21 +0000 (UTC) From: "Brian Evans" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Evans" Message-ID: <1446952754.fe940dbaa2fc9df712c824adbf13ee1ab4387358.grknight@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/tvdb_api/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/tvdb_api/tvdb_api-1.9.ebuild X-VCS-Directories: dev-python/tvdb_api/ X-VCS-Committer: grknight X-VCS-Committer-Name: Brian Evans X-VCS-Revision: fe940dbaa2fc9df712c824adbf13ee1ab4387358 X-VCS-Branch: master Date: Sun, 8 Nov 2015 03:21:21 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 8d3eb491-08d0-4f7d-bb0c-3ebecbc81284 X-Archives-Hash: dff2215c28c346101af3a81ea44efc94 commit: fe940dbaa2fc9df712c824adbf13ee1ab4387358 Author: Brian Evans gentoo org> AuthorDate: Sun Nov 8 03:19:14 2015 +0000 Commit: Brian Evans gentoo org> CommitDate: Sun Nov 8 03:19:14 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe940dba dev-python/tvdb_api: Fix syntax error where PYTHON_COMPAT was not an array Package-Manager: portage-2.2.20.1 dev-python/tvdb_api/tvdb_api-1.9.ebuild | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dev-python/tvdb_api/tvdb_api-1.9.ebuild b/dev-python/tvdb_api/tvdb_api-1.9.ebuild index 0f998e8..673194d 100644 --- a/dev-python/tvdb_api/tvdb_api-1.9.ebuild +++ b/dev-python/tvdb_api/tvdb_api-1.9.ebuild @@ -4,7 +4,7 @@ EAPI=5 -PYTHON_COMPAT="python2_7" +PYTHON_COMPAT=( python2_7 ) inherit distutils-r1 vcs-snapshot DESCRIPTION="Python interface to thetvdb.com API"