small change
This commit is contained in:
parent
ab631c73dd
commit
4ad8091309
@ -24,7 +24,7 @@ gc.set_threshold(allocs, gen1, gen2)
|
|||||||
logging.getLogger("musicbrainzngs").setLevel(logging.WARNING)
|
logging.getLogger("musicbrainzngs").setLevel(logging.WARNING)
|
||||||
musicbrainzngs.set_useragent("metadata receiver", "0.1", "https://github.com/HeIIow2/music-downloader")
|
musicbrainzngs.set_useragent("metadata receiver", "0.1", "https://github.com/HeIIow2/music-downloader")
|
||||||
|
|
||||||
URL_REGGEX = 'https?://(?:[-\w.]|(?:%[\da-fA-F]{2}))+'
|
URL_REGEX = 'https?://(?:[-\w.]|(?:%[\da-fA-F]{2}))+'
|
||||||
DOWNLOAD_COMMANDS = {
|
DOWNLOAD_COMMANDS = {
|
||||||
"ok",
|
"ok",
|
||||||
"download",
|
"download",
|
||||||
@ -70,7 +70,7 @@ def cli():
|
|||||||
|
|
||||||
return not r.is_mild_failure
|
return not r.is_mild_failure
|
||||||
|
|
||||||
url = re.match(URL_REGGEX, query)
|
url = re.match(URL_REGEX, query)
|
||||||
if url is not None:
|
if url is not None:
|
||||||
if not _search.search_url(url.string):
|
if not _search.search_url(url.string):
|
||||||
print("The given url couldn't be found.")
|
print("The given url couldn't be found.")
|
||||||
|
Loading…
Reference in New Issue
Block a user