From a26aa0184572639678f1e315915d87d92fe0750f Mon Sep 17 00:00:00 2001 From: zxce3 Date: Tue, 14 Sep 2021 04:31:15 +0700 Subject: [PATCH] fix directory --- bot/rmtrash.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot/rmtrash.py b/bot/rmtrash.py index 6d31078..b0428f7 100644 --- a/bot/rmtrash.py +++ b/bot/rmtrash.py @@ -4,8 +4,8 @@ from pyrogram.types import Message from helpers.filters import command from helpers.decorators import sudo_users_only, errors -downloads = os.path.realpath("downloads") -raw = os.path.realpath("raw_files") +downloads = os.path.realpath("bot/downloads") +raw = os.path.realpath("/") @Client.on_message(command(["rmd", "cleardl"]) & ~filters.edited) @errors