summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.md2
-rwxr-xr-xclient/main.py1
-rwxr-xr-xjasper.py1
3 files changed, 2 insertions, 2 deletions
diff --git a/README.md b/README.md
index d8919b8..11715be 100644
--- a/README.md
+++ b/README.md
@@ -1,7 +1,7 @@
jasper-client
=============
-<img src="https://travis-ci.org/jasperproject/jasper-client.svg?branch=master" alt="Build Status" />
+[![Build Status](https://travis-ci.org/jasperproject/jasper-client.svg?branch=master)](https://travis-ci.org/jasperproject/jasper-client)
Client code for the Jasper voice computing platform. Jasper is an open source platform for developing always-on, voice-controlled applications.
diff --git a/client/main.py b/client/main.py
index 6ec7137..629d75f 100755
--- a/client/main.py
+++ b/client/main.py
@@ -6,6 +6,5 @@ import os
import sys
import runpy
script_path = os.path.join(os.path.dirname(__file__), os.pardir, "jasper.py")
-sys.path.remove(os.path.dirname(__file__))
sys.path.insert(0, os.path.dirname(script_path))
runpy.run_path(script_path, run_name="__main__")
diff --git a/jasper.py b/jasper.py
index 7223469..93fd3c0 100755
--- a/jasper.py
+++ b/jasper.py
@@ -1,4 +1,5 @@
#!/usr/bin/env python2
+# -*- coding: utf-8-*-
import os
import sys
import traceback