aboutsummaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorGravatar jesopo2019-02-28 17:18:47 +0000
committerGravatar jesopo2019-02-28 17:18:47 +0000
commitb4fca127d137bc2aa897e0673b957fd9e1c72264 (patch)
tree1cae59fc564f59622bbd533bffac426468e8cf47 /modules
parentColorise PR/issue numbers (github) (diff)
signature
COLOR_POSITIVE should be green and COLOR_NEGATIVE should be red
Diffstat (limited to 'modules')
-rw-r--r--modules/github/__init__.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/modules/github/__init__.py b/modules/github/__init__.py
index 92270d85..3d03fbd5 100644
--- a/modules/github/__init__.py
+++ b/modules/github/__init__.py
@@ -3,8 +3,8 @@ from src import ModuleManager, utils
COLOR_BRANCH = utils.consts.ORANGE
COLOR_REPO = utils.consts.GREY
-COLOR_POSITIVE = utils.consts.RED
-COLOR_NEGATIVE = utils.consts.GREEN
+COLOR_POSITIVE = utils.consts.GREEN
+COLOR_NEGATIVE = utils.consts.RED
COLOR_ID = utils.consts.PURPLE
FORM_ENCODED = "application/x-www-form-urlencoded"