aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-11-26 14:47:47 +0000
committerGravatar jesopo2018-11-26 14:47:47 +0000
commit231fa5112912d4c95ab6ab8c9d45aad1dd1c18b7 (patch)
tree4443efbcc1e31822b44f96f1863c39fdd61fe628
parentModuleWarnings in src/ModuleManger.py should be logged as `warn`, not `error` (diff)
signature
use '~' instead of '±' to represent "changed files" in modules/github.py
-rw-r--r--modules/github.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/github.py b/modules/github.py
index f18db035..ecfe8e7a 100644
--- a/modules/github.py
+++ b/modules/github.py
@@ -103,7 +103,7 @@ class Module(ModuleManager.BaseModule):
def _removed(self, n):
return self._change_count(n, "-", utils.consts.RED)
def _modified(self, n):
- return self._change_count(n, "±", utils.consts.PURPLE)
+ return self._change_count(n, "~", utils.consts.PURPLE)
def _short_hash(self, hash):
return hash[:8]