From c26238cf723b686d5575c11a662f08a7f27a4835 Mon Sep 17 00:00:00 2001 From: Sumner Evans Date: Sun, 3 Jan 2021 13:35:35 -0700 Subject: [PATCH] Fix comment --- sublime_music/adapters/manager.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/sublime_music/adapters/manager.py b/sublime_music/adapters/manager.py index 0b4d0e9..b094f82 100644 --- a/sublime_music/adapters/manager.py +++ b/sublime_music/adapters/manager.py @@ -423,9 +423,8 @@ class AdapterManager: if resource_downloading: logging.info(f"{uri} already being downloaded.") - # The resource is already being downloaded. Busy loop until - # it has completed. Then, just return the path to the - # resource. + # The resource is already being downloaded. Busy loop until it has + # completed. Then, just return the path to the resource. t = 0.0 while id in AdapterManager.current_download_ids and t < 20: sleep(0.2)