Python 2.6 support
diff --git a/tasks.py b/tasks.py
index ca967f0..f72f43b 100644
--- a/tasks.py
+++ b/tasks.py
@@ -20,8 +20,8 @@
     """
     ``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))