diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-03-13 21:40:56 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2017-03-13 21:40:56 -0400 |
commit | 8c1e01886853471d8dadd473f491f310937b01d0 (patch) | |
tree | f41bf6a8699495575640d0d8fda37d45d0e4d056 /fabfile.py | |
parent | 8b0505c5ccdc7516572afe1426d82666f97232af (diff) | |
download | cmd2-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.py | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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") |