From 3325354bc0b858eae7748a8aec6b1044d7dfa314 Mon Sep 17 00:00:00 2001 From: Jason Paryani Date: Mon, 12 Aug 2013 17:41:41 -0700 Subject: [PATCH] Fix for Python 2.6 compatability --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 2934276..8acba9a 100644 --- a/setup.py +++ b/setup.py @@ -54,7 +54,7 @@ setup( author="Jason Paryani", author_email="pypi-contact@jparyani.com", url = 'https://github.com/jparyani/capnpc-python-cpp', - download_url = 'https://github.com/jparyani/capnpc-python-cpp/archive/v{}.zip'.format(VERSION), + download_url = 'https://github.com/jparyani/capnpc-python-cpp/archive/v%s.zip' % VERSION, keywords = ['capnp', 'capnproto'], classifiers = [ 'Development Status :: 3 - Alpha',