From 4345c0d3e65132985afb3f5a7fee04ea212811a0 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 7 Jan 2014 11:12:47 -0800 Subject: Python 2.6 support --- tasks.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tasks.py') diff --git a/tasks.py b/tasks.py index ca967f0d..f72f43ba 100644 --- a/tasks.py +++ b/tasks.py @@ -20,8 +20,8 @@ def release(version): """ ``version`` should be a string like '0.4' or '1.0'. """ - invoke.run("git tag -s {}".format(version)) + invoke.run("git tag -s {0}".format(version)) invoke.run("git push --tags") invoke.run("python setup.py sdist") - invoke.run("twine upload -s dist/cryptography-{}*".format(version)) + invoke.run("twine upload -s dist/cryptography-{0}*".format(version)) -- cgit v1.2.3