diff options
author | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2020-07-21 17:51:58 +0200 |
---|---|---|
committer | Daniel Teichmann <daniel.teichmann@das-netzwerkteam.de> | 2020-07-22 14:55:25 +0200 |
commit | 6a6ac63ecc6539362b470b98a5f15717fad7ca6b (patch) | |
tree | b06d2bfcfb8074e2d1eb046a55dddae083f21678 | |
parent | 743492297d911bb296127cc0e95c16b0b0b4ce9f (diff) | |
download | RWA.Support.SessionService-6a6ac63ecc6539362b470b98a5f15717fad7ca6b.tar.gz RWA.Support.SessionService-6a6ac63ecc6539362b470b98a5f15717fad7ca6b.tar.bz2 RWA.Support.SessionService-6a6ac63ecc6539362b470b98a5f15717fad7ca6b.zip |
Add shebang to python executables
-rwxr-xr-x[-rw-r--r--] | service.py | 1 | ||||
-rwxr-xr-x[-rw-r--r--] | test_client.py | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/service.py b/service.py index 21737ac..45cb17a 100644..100755 --- a/service.py +++ b/service.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 import json import time from threading import Thread diff --git a/test_client.py b/test_client.py index 927dfd3..9cc6b68 100644..100755 --- a/test_client.py +++ b/test_client.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 import dbus bus = dbus.SessionBus() |