# HG changeset patch # User Gustavo Picon # Date 1260981314 18000 # Node ID 87cc2284ce7f0737b76fea99da48cd48ae319a6b # Parent 40a88c0be047f361b5cff17a97f68f47678b8e87 fixed path bug in setup.py diff -r 40a88c0be047f361b5cff17a97f68f47678b8e87 -r 87cc2284ce7f0737b76fea99da48cd48ae319a6b setup.py --- a/setup.py Mon Dec 14 23:41:19 2009 -0500 +++ b/setup.py Wed Dec 16 11:35:14 2009 -0500 @@ -15,7 +15,7 @@ ] root_dir = os.path.dirname(__file__) -long_desc = open(root_dir if root_dir else '.'+'/README').read() +long_desc = open((root_dir if root_dir else '.')+'/README').read() setup( name='numconv',