Repository: thrift
Updated Branches:
  refs/heads/master d21032ad4 -> 86653cc38


THRIFT-2437 Author fields in Python setup.py must be strings not lists
Patch: Pascal Bach


Project: http://git-wip-us.apache.org/repos/asf/thrift/repo
Commit: http://git-wip-us.apache.org/repos/asf/thrift/commit/86653cc3
Tree: http://git-wip-us.apache.org/repos/asf/thrift/tree/86653cc3
Diff: http://git-wip-us.apache.org/repos/asf/thrift/diff/86653cc3

Branch: refs/heads/master
Commit: 86653cc388159ed1a83a7cb636c6dbc6a89ed9fe
Parents: d21032a
Author: Roger Meier <[email protected]>
Authored: Mon Mar 31 19:49:53 2014 +0200
Committer: Roger Meier <[email protected]>
Committed: Mon Mar 31 19:49:53 2014 +0200

----------------------------------------------------------------------
 lib/py/setup.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/thrift/blob/86653cc3/lib/py/setup.py
----------------------------------------------------------------------
diff --git a/lib/py/setup.py b/lib/py/setup.py
index 5d2cf8a..76a3526 100644
--- a/lib/py/setup.py
+++ b/lib/py/setup.py
@@ -68,8 +68,8 @@ def run_setup(with_binary):
     setup(name = 'thrift',
         version = '1.0.0-dev',
         description = 'Python bindings for the Apache Thrift RPC system',
-        author = ['Thrift Developers'],
-        author_email = ['[email protected]'],
+        author = 'Thrift Developers',
+        author_email = '[email protected]',
         url = 'http://thrift.apache.org',
         license = 'Apache License 2.0',
         packages = [

Reply via email to