summaryrefslogtreecommitdiff
path: root/boot
diff options
context:
space:
mode:
authorschneefux <schneefux+commit@schneefux.xyz>2014-09-10 17:21:59 -0400
committerschneefux <schneefux+commit@schneefux.xyz>2014-09-10 17:21:59 -0400
commit8233bd3e1ded9edf607df142c9b13f302f957def (patch)
tree44a5545dff3b64ee1159856076ebae5b2dce4bce /boot
parent4bb5053efde9f40acc9be3033c517bf391e01eca (diff)
parent16885dbcc25c01d5db2bf1dbc681828cfc06b70b (diff)
downloadjasper-client-8233bd3e1ded9edf607df142c9b13f302f957def.tar.gz
jasper-client-8233bd3e1ded9edf607df142c9b13f302f957def.zip
Merge pull request #154 from Holzhaus/shebangs
Added shebangs and PEP 0263 source encodings
Diffstat (limited to 'boot')
-rwxr-xr-xboot/boot.py4
-rwxr-xr-xboot/boot.sh2
-rwxr-xr-x[-rw-r--r--]boot/test.py2
-rw-r--r--boot/vocabcompiler.py1
4 files changed, 6 insertions, 3 deletions
diff --git a/boot/boot.py b/boot/boot.py
index e107166..cb49552 100755
--- a/boot/boot.py
+++ b/boot/boot.py
@@ -1,5 +1,5 @@
-#!/usr/bin/env python
-
+#!/usr/bin/env python2
+# -*- coding: utf-8-*-
import os
import urllib2
import sys
diff --git a/boot/boot.sh b/boot/boot.sh
index e712c0d..f4e577d 100755
--- a/boot/boot.sh
+++ b/boot/boot.sh
@@ -14,4 +14,4 @@ LD_LIBRARY_PATH="/usr/local/lib"
export LD_LIBRARY_PATH
PATH=$PATH:/usr/local/lib/
export PATH
-python boot.py &
+./boot.py &
diff --git a/boot/test.py b/boot/test.py
index 3d93936..638ca77 100644..100755
--- a/boot/test.py
+++ b/boot/test.py
@@ -1,3 +1,5 @@
+#!/usr/bin/env python2
+# -*- coding: utf-8-*-
import os
if os.environ.get('JASPER_HOME') is None:
diff --git a/boot/vocabcompiler.py b/boot/vocabcompiler.py
index a3aaf66..f22da1a 100644
--- a/boot/vocabcompiler.py
+++ b/boot/vocabcompiler.py
@@ -1,3 +1,4 @@
+# -*- coding: utf-8-*-
"""
Iterates over all the WORDS variables in the modules and creates a dictionary for the client.
"""