mirror of
https://github.com/KevinMidboe/spotify-downloader.git
synced 2025-12-08 20:39:08 +00:00
Rename spotdl.command_line.lib to spotdl.command_line.core
This commit is contained in:
@@ -3,7 +3,7 @@ import coloredlogs
|
||||
|
||||
import sys
|
||||
|
||||
from spotdl.command_line.lib import Spotdl
|
||||
from spotdl.command_line.core import Spotdl
|
||||
from spotdl.command_line.arguments import get_arguments
|
||||
from spotdl.command_line.exceptions import ArgumentError
|
||||
|
||||
|
||||
@@ -59,8 +59,7 @@ class Spotdl:
|
||||
if track == "-":
|
||||
for line in sys.stdin:
|
||||
self.download_track(
|
||||
line,
|
||||
self.arguments
|
||||
line.strip(),
|
||||
)
|
||||
else:
|
||||
self.download_track(track)
|
||||
Reference in New Issue
Block a user