From 6a6ac63ecc6539362b470b98a5f15717fad7ca6b Mon Sep 17 00:00:00 2001 From: Daniel Teichmann Date: Tue, 21 Jul 2020 17:51:58 +0200 Subject: Add shebang to python executables --- service.py | 1 + test_client.py | 1 + 2 files changed, 2 insertions(+) mode change 100644 => 100755 service.py mode change 100644 => 100755 test_client.py diff --git a/service.py b/service.py old mode 100644 new mode 100755 index 21737ac..45cb17a --- 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 old mode 100644 new mode 100755 index 927dfd3..9cc6b68 --- a/test_client.py +++ b/test_client.py @@ -1,3 +1,4 @@ +#!/usr/bin/env python3 import dbus bus = dbus.SessionBus() -- cgit v1.2.3