mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2024-12-26 09:58:31 +01:00
Updated for bar message
This commit is contained in:
parent
ea8d8f9128
commit
16a7aaf6f4
2 changed files with 2 additions and 2 deletions
|
@ -33,7 +33,7 @@ class ProgressBar(Configs):
|
|||
f"{message}... ")
|
||||
|
||||
if self.spinning_bar:
|
||||
bar_spinner = self.spinner(f'{bar_message} {self.color}')
|
||||
bar_spinner = self.spinner(f'{bar_message}{self.color}')
|
||||
# print('\033[F', end='', flush=True)
|
||||
try:
|
||||
while True:
|
||||
|
|
|
@ -612,7 +612,7 @@ class UpdateRepository(Configs):
|
|||
|
||||
def repositories(self) -> None:
|
||||
queue = Queue()
|
||||
message = f'Checking for news, please wait...'
|
||||
message: str = 'Checking for news, please wait...'
|
||||
|
||||
# Starting multiprocessing
|
||||
p1 = Process(target=self.check_for_updates, args=(queue,))
|
||||
|
|
Loading…
Reference in a new issue