use '~' instead of '±' to represent "changed files" in modules/github.py

This commit is contained in:
jesopo 2018-11-26 14:47:47 +00:00
parent 8d32fed2fe
commit 231fa51129

View file

@ -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]