mirror of
https://github.com/glomatico/gamdl.git
synced 2026-06-13 12:15:18 +03:00
fix line too long
This commit is contained in:
+3
-2
@@ -347,7 +347,8 @@ def main(
|
||||
download_type, tracks = queue_item
|
||||
for track_index, track in enumerate(tracks, start=1):
|
||||
logger.info(
|
||||
f'Downloading "{track["attributes"]["name"]}" (track {track_index}/{len(tracks)} from URL {queue_item_index}/{len(download_queue)})'
|
||||
f'Downloading "{track["attributes"]["name"]}" (track {track_index}/{len(tracks)} '
|
||||
f"from URL {queue_item_index}/{len(download_queue)})"
|
||||
)
|
||||
try:
|
||||
if not track["attributes"].get("playParams"):
|
||||
@@ -548,7 +549,7 @@ def main(
|
||||
error_count += 1
|
||||
logger.error(
|
||||
f'Failed to download "{track["attributes"]["name"]}" (track {track_index}/{len(tracks)} from URL '
|
||||
+ f"{queue_item_index}/{len(download_queue)})",
|
||||
f"{queue_item_index}/{len(download_queue)})",
|
||||
exc_info=print_exceptions,
|
||||
)
|
||||
finally:
|
||||
|
||||
Reference in New Issue
Block a user