summaryrefslogtreecommitdiff
path: root/voctocore/lib/notifications.py
diff options
context:
space:
mode:
Diffstat (limited to 'voctocore/lib/notifications.py')
-rw-r--r--voctocore/lib/notifications.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/voctocore/lib/notifications.py b/voctocore/lib/notifications.py
deleted file mode 100644
index 1e101e1..0000000
--- a/voctocore/lib/notifications.py
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/python3
-
-# If you know a better way to do this, go for it...
-
-import logging
-
-log = logging.getLogger("Notifications")
-controlserver = None
-
-def notify_all(msg):
- try:
- controlserver.notify_all(msg)
- except Exception as e:
- log.warn(e)