diff options
author | Daniel Gustafsson | 2017-01-21 20:33:05 +0000 |
---|---|---|
committer | Daniel Gustafsson | 2017-01-21 20:33:05 +0000 |
commit | 089f53b2de738a7a4fc82efe34dd924cad5aa295 (patch) | |
tree | 43f2974ee0d20aa0ce47d32ac89ac089e6a29e26 /tools/deploystatic/deploystatic.py | |
parent | 9fc532b3f3bbc9a938f7f1c960046e4e1c751516 (diff) |
Fix tyops
Diffstat (limited to 'tools/deploystatic/deploystatic.py')
-rwxr-xr-x | tools/deploystatic/deploystatic.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/deploystatic/deploystatic.py b/tools/deploystatic/deploystatic.py index 8a425ee3..e6704ae6 100755 --- a/tools/deploystatic/deploystatic.py +++ b/tools/deploystatic/deploystatic.py @@ -1,7 +1,7 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- # -# Deploy a static site based on jinja2 templates (sanxboxed) +# Deploy a static site based on jinja2 templates (sandboxed) import argparse import sys @@ -48,7 +48,7 @@ def load_context(jsonfile): else: return {} -# Locaate which git revision we're on +# Locate which git revision we're on def find_git_revision(path): while path != '/': if os.path.exists(os.path.join(path, ".git/HEAD")): @@ -95,7 +95,7 @@ if __name__ == "__main__": print "Source path is not absolute!" sys.exit(1) if not os.path.isabs(args.destpath): - print "Destination path isn ot absolute!" + print "Destination path is not absolute!" sys.exit(1) if not os.path.isdir(args.sourcepath): |