summaryrefslogtreecommitdiff
path: root/fabfile.py
diff options
context:
space:
mode:
authorTodd Leonhardt <todd.leonhardt@gmail.com>2017-03-13 21:40:56 -0400
committerTodd Leonhardt <todd.leonhardt@gmail.com>2017-03-13 21:40:56 -0400
commit8c1e01886853471d8dadd473f491f310937b01d0 (patch)
treef41bf6a8699495575640d0d8fda37d45d0e4d056 /fabfile.py
parent8b0505c5ccdc7516572afe1426d82666f97232af (diff)
downloadcmd2-git-8c1e01886853471d8dadd473f491f310937b01d0.tar.gz
Mostly fix a bunch of spelling mistakes.
A few other miscellaneous minor tweaks for whitespace and such.
Diffstat (limited to 'fabfile.py')
-rw-r--r--fabfile.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/fabfile.py b/fabfile.py
index 50c0e911..52345929 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -1,3 +1,4 @@
+# coding=utf-8
from fabric.api import env, task, local
import os
import errno
@@ -93,7 +94,7 @@ def release():
release_check()
clean()
build()
- print "Releasing", env.projname, "version", env.version
+ print("Releasing", env.projname, "version", env.version)
local("git tag %s" % env.version)
local("python setup.py sdist upload")
local("git push --tags")