mirror of
https://gitlab.com/dslackw/slpkg.git
synced 2025-01-13 20:01:48 +01:00
Removed space from message
This commit is contained in:
parent
4a16fa5fe5
commit
551d97b7c0
3 changed files with 3 additions and 3 deletions
|
@ -38,7 +38,7 @@ class Downloader:
|
|||
self.stderr = subprocess.DEVNULL
|
||||
self.stdout = subprocess.DEVNULL
|
||||
|
||||
message = f'[{self.green} Downloading {self.endc}]'
|
||||
message = f'[{self.green}Downloading{self.endc}]'
|
||||
|
||||
# Starting multiprocessing
|
||||
p1 = Process(target=self.wget)
|
||||
|
|
|
@ -83,7 +83,7 @@ class RemovePackages:
|
|||
|
||||
# Starting multiprocessing
|
||||
p1 = Process(target=self.process, args=(command,))
|
||||
p2 = Process(target=self.progress.bar, args=(f'[ {message} ]', package))
|
||||
p2 = Process(target=self.progress.bar, args=(f'[{message}]', package))
|
||||
|
||||
p1.start()
|
||||
p2.start()
|
||||
|
|
|
@ -289,7 +289,7 @@ class Slackbuilds:
|
|||
|
||||
# Starting multiprocessing
|
||||
p1 = Process(target=self.process, args=(command,))
|
||||
p2 = Process(target=self.progress.bar, args=(f'[ {message} ]', filename))
|
||||
p2 = Process(target=self.progress.bar, args=(f'[{message}]', filename))
|
||||
|
||||
p1.start()
|
||||
p2.start()
|
||||
|
|
Loading…
Reference in a new issue