mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-27 09:58:10 +01:00
Restore color
This commit is contained in:
parent
10613b1f30
commit
bf16f9afcb
5 changed files with 5 additions and 5 deletions
|
@ -65,4 +65,4 @@ class CheckUpdates(Configs):
|
|||
p2.join()
|
||||
|
||||
# Restore the terminal cursor
|
||||
print('\x1b[?25h')
|
||||
print('\x1b[?25h', self.endc)
|
||||
|
|
|
@ -95,7 +95,7 @@ class Downloader(Configs, Utilities):
|
|||
p2.join()
|
||||
|
||||
# Restore the terminal cursor
|
||||
print('\x1b[?25h')
|
||||
print('\x1b[?25h', self.endc)
|
||||
else:
|
||||
self.wget()
|
||||
|
||||
|
|
|
@ -114,7 +114,7 @@ class RemovePackages(Configs):
|
|||
p2.join()
|
||||
|
||||
# Restore the terminal cursor
|
||||
print('\x1b[?25h')
|
||||
print('\x1b[?25h', self.endc)
|
||||
else:
|
||||
self.process(command)
|
||||
|
||||
|
|
|
@ -302,7 +302,7 @@ class Slackbuilds(Configs):
|
|||
p2.join()
|
||||
|
||||
# Restore the terminal cursor
|
||||
print('\x1b[?25h')
|
||||
print('\x1b[?25h', self.endc)
|
||||
else:
|
||||
self.process(command)
|
||||
|
||||
|
|
|
@ -77,7 +77,7 @@ class UpdateRepository(Configs):
|
|||
p2.join()
|
||||
|
||||
# Restore the terminal cursor
|
||||
print('\x1b[?25h', end='')
|
||||
print('\x1b[?25h', self.endc, end='')
|
||||
|
||||
self.sbo()
|
||||
|
||||
|
|
Loading…
Reference in a new issue