bots

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 398b1577faa1aaaffb66d201066b1c096faf8283
parent 54f4bae4c1ec10cf60eab5594d196cf47c53966f
Author: Nathaniel Chappelle <nathaniel@chappelle.dev>
Date:   Thu,  5 Feb 2026 17:15:42 -0800

fixing repo path

Diffstat:
Mlisten-page-bot/bot.py | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/listen-page-bot/bot.py b/listen-page-bot/bot.py @@ -130,8 +130,8 @@ async def cancel(update: Update, context: ContextTypes.DEFAULT_TYPE): if __name__ == '__main__': repo_path = REPO_PATH - subprocess.run(["git", "fetch", "origin", "." ], cwd=repo_path, check=True) - subprocess.run(["git", "pull", "."], cwd=repo_path, check=True) + subprocess.run(["git", "fetch", "origin" ], cwd=repo_path, check=True) + subprocess.run(["git", "pull" ], cwd=repo_path, check=True) app = ApplicationBuilder().token(os.getenv("TELEGRAM_TOKEN")).build()