From 78cd591a397d5e11866611a04bb36d8a9a2f9bb1 Mon Sep 17 00:00:00 2001 From: Monty Taylor Date: Wed, 12 Oct 2011 14:39:31 -0400 Subject: [PATCH] Replace tuple with list to unconfuse setuptools. Change-Id: I1872f777ee9b0f66e6de6b95e4e986bf18416123 --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index e9562c85..a4919ea4 100755 --- a/setup.py +++ b/setup.py @@ -63,7 +63,7 @@ setup( author='OpenStack, LLC.', author_email='openstack@lists.launchpad.net', url='http://www.openstack.org', - scripts=('git-review'), + scripts=['git-review'], data_files=[('share/man/man1', ['build/sphinx/man/git-review.1'])], cmdclass=cmdclass, )