mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-31 10:26:39 +01:00
Change color Done to green
This commit is contained in:
parent
83e5653e58
commit
9b2257fa78
1 changed files with 2 additions and 1 deletions
|
@ -32,6 +32,7 @@ class Msg:
|
||||||
"""
|
"""
|
||||||
def __init__(self):
|
def __init__(self):
|
||||||
self.meta = _meta_
|
self.meta = _meta_
|
||||||
|
self.green = _meta_.color["GREEN"]
|
||||||
self.grey = _meta_.color["GREY"]
|
self.grey = _meta_.color["GREY"]
|
||||||
self.red = _meta_.color["RED"]
|
self.red = _meta_.color["RED"]
|
||||||
self.cyan = _meta_.color["CYAN"]
|
self.cyan = _meta_.color["CYAN"]
|
||||||
|
@ -90,7 +91,7 @@ class Msg:
|
||||||
def done(self):
|
def done(self):
|
||||||
"""Message done
|
"""Message done
|
||||||
"""
|
"""
|
||||||
print(f"\b{self.grey}Done{self.endc}\n", end="")
|
print(f"\b{self.green}Done{self.endc}\n", end="")
|
||||||
|
|
||||||
def pkg(self, count):
|
def pkg(self, count):
|
||||||
"""Print singular plural
|
"""Print singular plural
|
||||||
|
|
Loading…
Reference in a new issue