aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaZderMind <git@mazdermind.de>2016-02-01 16:58:37 +0100
committerMaZderMind <git@mazdermind.de>2016-02-01 16:58:37 +0100
commitd603abfed1a6dd8a8fdc7f9ae6536f03b03ecd5a (patch)
tree24dc86ff1fbd1123359332522a94d6c33803e888
parenta4f55fae5ee7065a7cacd3bb2da6d8d8edc970c1 (diff)
cleanup shebang lines
-rwxr-xr-xexample-scripts/control-server/generate-cut-list.py1
-rwxr-xr-xexample-scripts/gstreamer/source-background-loop.py1
-rw-r--r--voctocore/lib/args.py1
-rw-r--r--voctocore/lib/audiomix.py1
-rw-r--r--voctocore/lib/avpreviewoutput.py1
-rw-r--r--voctocore/lib/avrawoutput.py1
-rw-r--r--voctocore/lib/avsource.py1
-rw-r--r--voctocore/lib/commands.py1
-rw-r--r--voctocore/lib/config.py1
-rw-r--r--voctocore/lib/controlserver.py1
-rw-r--r--voctocore/lib/loghandler.py1
-rw-r--r--voctocore/lib/pipeline.py1
-rw-r--r--voctocore/lib/response.py1
-rw-r--r--voctocore/lib/streamblanker.py1
-rw-r--r--voctocore/lib/tcpmulticonnection.py1
-rw-r--r--voctocore/lib/tcpsingleconnection.py1
-rw-r--r--voctocore/lib/videomix.py1
-rwxr-xr-xvoctocore/voctocore.py2
-rw-r--r--voctogui/lib/args.py1
-rw-r--r--voctogui/lib/config.py1
-rw-r--r--voctogui/lib/connection.py1
-rw-r--r--voctogui/lib/loghandler.py1
-rw-r--r--voctogui/lib/ui.py1
-rw-r--r--voctogui/lib/uibuilder.py1
-rwxr-xr-xvoctogui/voctogui.py2
25 files changed, 2 insertions, 25 deletions
diff --git a/example-scripts/control-server/generate-cut-list.py b/example-scripts/control-server/generate-cut-list.py
index 59519c1..23a0b33 100755
--- a/example-scripts/control-server/generate-cut-list.py
+++ b/example-scripts/control-server/generate-cut-list.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import socket
import datetime
import sys
diff --git a/example-scripts/gstreamer/source-background-loop.py b/example-scripts/gstreamer/source-background-loop.py
index fd63fc0..8b65088 100755
--- a/example-scripts/gstreamer/source-background-loop.py
+++ b/example-scripts/gstreamer/source-background-loop.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import sys, gi, signal
gi.require_version('Gst', '1.0')
diff --git a/voctocore/lib/args.py b/voctocore/lib/args.py
index 90122ea..d40cd75 100644
--- a/voctocore/lib/args.py
+++ b/voctocore/lib/args.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import argparse
__all__ = ['Args']
diff --git a/voctocore/lib/audiomix.py b/voctocore/lib/audiomix.py
index 17bc1fb..1c72ede 100644
--- a/voctocore/lib/audiomix.py
+++ b/voctocore/lib/audiomix.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging
from gi.repository import Gst
from enum import Enum
diff --git a/voctocore/lib/avpreviewoutput.py b/voctocore/lib/avpreviewoutput.py
index 640d4fa..f757e1c 100644
--- a/voctocore/lib/avpreviewoutput.py
+++ b/voctocore/lib/avpreviewoutput.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging
from gi.repository import Gst
diff --git a/voctocore/lib/avrawoutput.py b/voctocore/lib/avrawoutput.py
index ff50ecb..62a03d2 100644
--- a/voctocore/lib/avrawoutput.py
+++ b/voctocore/lib/avrawoutput.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging
from gi.repository import Gst
diff --git a/voctocore/lib/avsource.py b/voctocore/lib/avsource.py
index 068b07f..c9f4dea 100644
--- a/voctocore/lib/avsource.py
+++ b/voctocore/lib/avsource.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging
from gi.repository import Gst
diff --git a/voctocore/lib/commands.py b/voctocore/lib/commands.py
index 21b8de8..64d1c57 100644
--- a/voctocore/lib/commands.py
+++ b/voctocore/lib/commands.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging
import json
diff --git a/voctocore/lib/config.py b/voctocore/lib/config.py
index a8784b2..ebb9e1e 100644
--- a/voctocore/lib/config.py
+++ b/voctocore/lib/config.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import os.path
from configparser import SafeConfigParser
from lib.args import Args
diff --git a/voctocore/lib/controlserver.py b/voctocore/lib/controlserver.py
index 87a28c8..5544e7b 100644
--- a/voctocore/lib/controlserver.py
+++ b/voctocore/lib/controlserver.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import socket, logging, traceback
from queue import Queue
from gi.repository import GObject
diff --git a/voctocore/lib/loghandler.py b/voctocore/lib/loghandler.py
index f0a60ee..2cc7ceb 100644
--- a/voctocore/lib/loghandler.py
+++ b/voctocore/lib/loghandler.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging, time
class LogFormatter(logging.Formatter):
diff --git a/voctocore/lib/pipeline.py b/voctocore/lib/pipeline.py
index 9c6a7f8..a13f1d2 100644
--- a/voctocore/lib/pipeline.py
+++ b/voctocore/lib/pipeline.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging
from gi.repository import Gst
diff --git a/voctocore/lib/response.py b/voctocore/lib/response.py
index 866d5f2..9f4ad84 100644
--- a/voctocore/lib/response.py
+++ b/voctocore/lib/response.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
class Response(object):
def __init__(self, *args):
diff --git a/voctocore/lib/streamblanker.py b/voctocore/lib/streamblanker.py
index 2f4cc58..b3f460c 100644
--- a/voctocore/lib/streamblanker.py
+++ b/voctocore/lib/streamblanker.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging
from gi.repository import Gst
from enum import Enum
diff --git a/voctocore/lib/tcpmulticonnection.py b/voctocore/lib/tcpmulticonnection.py
index c47381d..66fc33f 100644
--- a/voctocore/lib/tcpmulticonnection.py
+++ b/voctocore/lib/tcpmulticonnection.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging, socket
from queue import Queue
from gi.repository import GObject
diff --git a/voctocore/lib/tcpsingleconnection.py b/voctocore/lib/tcpsingleconnection.py
index d08f430..bf89651 100644
--- a/voctocore/lib/tcpsingleconnection.py
+++ b/voctocore/lib/tcpsingleconnection.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging, socket, time
from gi.repository import GObject
diff --git a/voctocore/lib/videomix.py b/voctocore/lib/videomix.py
index 9aaadb0..98614db 100644
--- a/voctocore/lib/videomix.py
+++ b/voctocore/lib/videomix.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging
from gi.repository import Gst
from enum import Enum, unique
diff --git a/voctocore/voctocore.py b/voctocore/voctocore.py
index e834a58..39def6a 100755
--- a/voctocore/voctocore.py
+++ b/voctocore/voctocore.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
import gi, signal, logging, sys
# import GStreamer and GLib-Helper classes
diff --git a/voctogui/lib/args.py b/voctogui/lib/args.py
index 63e12d3..db87fd7 100644
--- a/voctogui/lib/args.py
+++ b/voctogui/lib/args.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import argparse
__all__ = ['Args']
diff --git a/voctogui/lib/config.py b/voctogui/lib/config.py
index fe581d0..4120092 100644
--- a/voctogui/lib/config.py
+++ b/voctogui/lib/config.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging
import json
import os.path
diff --git a/voctogui/lib/connection.py b/voctogui/lib/connection.py
index 71c6588..6a9c025 100644
--- a/voctogui/lib/connection.py
+++ b/voctogui/lib/connection.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging
import socket
import json
diff --git a/voctogui/lib/loghandler.py b/voctogui/lib/loghandler.py
index f0a60ee..2cc7ceb 100644
--- a/voctogui/lib/loghandler.py
+++ b/voctogui/lib/loghandler.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import logging, time
class LogFormatter(logging.Formatter):
diff --git a/voctogui/lib/ui.py b/voctogui/lib/ui.py
index 51c913e..553682c 100644
--- a/voctogui/lib/ui.py
+++ b/voctogui/lib/ui.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import gi, logging
from gi.repository import Gtk, Gst, Gdk, GLib
diff --git a/voctogui/lib/uibuilder.py b/voctogui/lib/uibuilder.py
index 2d6a85b..2a6b00e 100644
--- a/voctogui/lib/uibuilder.py
+++ b/voctogui/lib/uibuilder.py
@@ -1,4 +1,3 @@
-#!/usr/bin/python3
import gi, logging
from gi.repository import Gtk, Gst
diff --git a/voctogui/voctogui.py b/voctogui/voctogui.py
index 8bb444b..0853898 100755
--- a/voctogui/voctogui.py
+++ b/voctogui/voctogui.py
@@ -1,4 +1,4 @@
-#!/usr/bin/python3
+#!/usr/bin/env python3
import gi, signal, logging, sys, os
# import GStreamer and GLib-Helper classes