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 689B91381F3 for ; Wed, 14 Nov 2012 18:18:27 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 69D2B21C012; Wed, 14 Nov 2012 18:18:17 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E891A21C012 for ; Wed, 14 Nov 2012 18:18:16 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E387D33DAE2 for ; Wed, 14 Nov 2012 18:18:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 68DDEE5436 for ; Wed, 14 Nov 2012 18:18:14 +0000 (UTC) From: "Paul Varner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Paul Varner" Message-ID: <1352916912.316519bd018e0762f435f87cba65250aad91f465.fuzzyray@gentoo> Subject: [gentoo-commits] proj/mirrorselect:master commit in: / X-VCS-Repository: proj/mirrorselect X-VCS-Files: setup.py X-VCS-Directories: / X-VCS-Committer: fuzzyray X-VCS-Committer-Name: Paul Varner X-VCS-Revision: 316519bd018e0762f435f87cba65250aad91f465 X-VCS-Branch: master Date: Wed, 14 Nov 2012 18:18:14 +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: 46108c60-0ed2-47f2-85d8-1f601b3d6053 X-Archives-Hash: 8e70c06517224cc7934f44eb08dcd52a commit: 316519bd018e0762f435f87cba65250aad91f465 Author: Paul Varner gentoo org> AuthorDate: Wed Nov 14 18:15:12 2012 +0000 Commit: Paul Varner gentoo org> CommitDate: Wed Nov 14 18:15:12 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/mirrorselect.git;a=commit;h=316519bd Fix python_scripts to properly create the list of scripts for set_version. --- setup.py | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/setup.py b/setup.py index e925825..60b048d 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ if "GENTOO_PORTAGE_EPREFIX" in EPREFIX: # Python files that need `version = ""` subbed, relative to this dir: python_scripts = [os.path.join(cwd, path) for path in ( - 'mirrorselect/version.py' + 'mirrorselect/version.py', )]