From c231090615f552adab46f5ac6fe31aa632588edf Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 6 Sep 2014 10:23:05 +0200 Subject: Add shebang and PEP 0263 source encoding to every module Source encoding should be specified and a shebang helps to execute a module directly (either to start jasper or just for testing purposes). --- boot/test.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'boot/test.py') diff --git a/boot/test.py b/boot/test.py index 3d93936..638ca77 100644 --- 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: -- cgit v1.3.1 From ba3d0585b7b06b4ac805b40b477877b2c158acf8 Mon Sep 17 00:00:00 2001 From: schneefux Date: Sat, 6 Sep 2014 10:26:13 +0200 Subject: Add executable flag to client/main.py and boot/test.py --- boot/test.py | 0 client/main.py | 0 2 files changed, 0 insertions(+), 0 deletions(-) mode change 100644 => 100755 boot/test.py mode change 100644 => 100755 client/main.py (limited to 'boot/test.py') diff --git a/boot/test.py b/boot/test.py old mode 100644 new mode 100755 diff --git a/client/main.py b/client/main.py old mode 100644 new mode 100755 -- cgit v1.3.1