aboutsummaryrefslogtreecommitdiff
path: root/EventManager.py
diff options
context:
space:
mode:
authorGravatar jesopo2018-09-09 17:08:38 +0100
committerGravatar jesopo2018-09-09 17:08:38 +0100
commit2a37e1053363577d9b47601e44533733bb48560a (patch)
tree6d2d631f7154f5a94e8d45155b68c217ecbfda80 /EventManager.py
parentChange bitly.py to use delimited events (diff)
Change default priority to "medium", add priority lower than "low" ("monitor")
Diffstat (limited to 'EventManager.py')
-rw-r--r--EventManager.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/EventManager.py b/EventManager.py
index 560c671e..604ae337 100644
--- a/EventManager.py
+++ b/EventManager.py
@@ -4,8 +4,9 @@ PRIORITY_URGENT = 0
PRIORITY_HIGH = 1
PRIORITY_MEDIUM = 2
PRIORITY_LOW = 3
+PRIORITY_MONITOR = 4
-DEFAULT_PRIORITY = PRIORITY_LOW
+DEFAULT_PRIORITY = PRIORITY_MEDIUM
DEFAULT_DELIMITER = "."
class Event(object):