mirror of
https://github.com/csd4ni3l/music-player.git
synced 2026-01-01 12:13:42 +01:00
fix download text having whitespace, fix display mode None crashing, and removed files and folders crashing
This commit is contained in:
@@ -80,7 +80,7 @@ class Downloader(arcade.gui.UIView):
|
||||
process = subprocess.Popen(command, stdout=subprocess.PIPE, stderr=subprocess.STDOUT, text=True)
|
||||
|
||||
for line in process.stdout:
|
||||
self.yt_dl_buffer = line
|
||||
self.yt_dl_buffer = line.strip()
|
||||
|
||||
process.wait()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user