This commit is contained in:
dj
2024-05-10 03:50:47 +03:00
parent ed8425c15a
commit 3d3cd5e324
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
APScheduler==3.10.4
aiogram==3.4.1
aiogram==3.5.0
colorlog==6.8.2
pytz==2024.1
typing~=3.7.4.3
+1 -1
View File
@@ -173,7 +173,7 @@ def convert_date(from_time, full=True, second=True) -> Union[str, int]:
else:
x_year, x_month, x_day = cache_date[2], cache_date[1], cache_date[0]
x_hour, x_minute, x_second = cache_time[0], cache_time[2], cache_time[2]
x_hour, x_minute, x_second = cache_time[0], cache_time[1], cache_time[2]
from_time = f"{x_day}.{x_month}.{x_year} {x_hour}:{x_minute}:{x_second}"
else: