Verbosity fix V1.0.7
This commit is contained in:
+2
-2
@@ -17,9 +17,9 @@ class Simp(commands.Cog):
|
|||||||
await ctx.respond(f'Błąd pobierania: {result["message"]}')
|
await ctx.respond(f'Błąd pobierania: {result["message"]}')
|
||||||
return
|
return
|
||||||
|
|
||||||
print(f'Wysyłanie \"{result["title"]}\" na kanał {ctx.channel.name} ({ctx.guild.name})')
|
print(f'Wysyłanie "{result["title"]}" na kanał {ctx.channel.name} ({ctx.guild.name})')
|
||||||
await ctx.respond(file=discord.File(result['filename']))
|
await ctx.respond(file=discord.File(result['filename']))
|
||||||
print(f'Wysyłano \"{result["title"]}\" na kanał {ctx.channel.name} ({ctx.guild.name})')
|
print(f'Wysyłano "{result["title"]}" na kanał {ctx.channel.name} ({ctx.guild.name})')
|
||||||
|
|
||||||
|
|
||||||
def setup(bot: discord.Bot):
|
def setup(bot: discord.Bot):
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ def download_video(yt_url: str) -> dict:
|
|||||||
|
|
||||||
with yt_dlp.YoutubeDL({'quiet': True}) as ydl:
|
with yt_dlp.YoutubeDL({'quiet': True}) as ydl:
|
||||||
try:
|
try:
|
||||||
print(f'Pobieranie \"{yt_url}\"')
|
print(f'Pobieranie "{yt_url}"')
|
||||||
info = ydl.extract_info(yt_url, download=False)
|
info = ydl.extract_info(yt_url, download=False)
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f'Nie można pobrać metadanych: {e}')
|
print(f'Nie można pobrać metadanych: {e}')
|
||||||
@@ -63,7 +63,7 @@ def download_video(yt_url: str) -> dict:
|
|||||||
try:
|
try:
|
||||||
info = ydl.extract_info(yt_url, download=True)
|
info = ydl.extract_info(yt_url, download=True)
|
||||||
filename = ydl.prepare_filename(info)
|
filename = ydl.prepare_filename(info)
|
||||||
print(f'Pobrano \"{info.get('title')}\" ({yt_url})')
|
print(f'Pobrano "{info.get("title")}" ({yt_url})')
|
||||||
except Exception as e:
|
except Exception as e:
|
||||||
print(f'Błąd pobierania: {e}')
|
print(f'Błąd pobierania: {e}')
|
||||||
return {'status': 'error', 'message': f'Błąd pobierania: {e}'}
|
return {'status': 'error', 'message': f'Błąd pobierania: {e}'}
|
||||||
|
|||||||
Reference in New Issue
Block a user