use '~' instead of '±' to represent "changed files" in modules/github.py
This commit is contained in:
parent
8d32fed2fe
commit
231fa51129
1 changed files with 1 additions and 1 deletions
|
@ -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]
|
||||
|
|
Loading…
Reference in a new issue