setup.py was using '%' in a place without a format string.
authorThomas Klausner <tk@giga.or.at>
Wed, 4 Jan 2012 22:47:28 +0000 (14:47 -0800)
committerKeith Packard <keithp@keithp.com>
Wed, 4 Jan 2012 22:47:28 +0000 (14:47 -0800)
I needed one patch for this though, since setup.py uses "%" in a place
where there is no format string (attached). Please apply it.

Signed-off-by: Keith Packard <keithp@keithp.com>
setup.py

index dda2d012787f98742973bd5583e1bed11656a5ef..955801488f18319aac513789c1579e022a73a8ee 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -67,8 +67,7 @@ setup(
     author="Keith Packard",
     author_email="keithp@keithp.com",
     url="http://keithp.com/",
-    download_url="http://keithp.com/git/calypso" % \
-        calypso.VERSION,
+    download_url="http://keithp.com/git/calypso",
     license="GNU GPL v3",
     platforms="Any",
     packages=["calypso", "calypso.acl"],