diff --git a/bot/__init__.py b/bot/__init__.py index d4de865..e1fbe3e 100644 --- a/bot/__init__.py +++ b/bot/__init__.py @@ -1,6 +1,6 @@ import discord -__version__ = '1.0.1' +__version__ = '1.0.3' __author__ = 'Kartoniarz' diff --git a/bot/utils/helpers.py b/bot/utils/helpers.py index 755c152..ac96ea4 100644 --- a/bot/utils/helpers.py +++ b/bot/utils/helpers.py @@ -40,7 +40,7 @@ def download_video(yt_url: str) -> dict: if duration > MAX_DUR: return { 'status': 'error', - 'message': f'Wideo jest za długie ({duration // 60}m {duration % 60}s). Maksymalnie 10 minut.' + 'message': f'Wideo jest za długie ({duration // 60}m {duration % 60}s). Maksymalnie {MAX_DUR // 60}m {MAX_DUR % 60}s.' } rotate_downloads(DOWNLOADS)