From 4cf720cc5d0ddea9ade756c900fb521dd5d8ba4d Mon Sep 17 00:00:00 2001 From: sugoidogo Date: Sun, 20 Jul 2025 23:15:26 -0700 Subject: [PATCH] fix typo --- astrolobot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/astrolobot.py b/astrolobot.py index da14761..1f920f9 100755 --- a/astrolobot.py +++ b/astrolobot.py @@ -9,13 +9,13 @@ import json,sys,webbrowser,importlib,tomllib def update(*args): print('checking for updates...') - with open(script_path()+'astrolobott.py','r') as file: + with open(script_path()+'astrolobot.py','r') as file: current_script=file.read() urlretrieve( 'https://github.com/sugoidogo/astrolobot/releases/latest/download/astrolobot.py', script_path()+'astrolobot.py' ) - with open(script_path()+'astrolobott.py','r') as file: + with open(script_path()+'astrolobot.py','r') as file: updated_script=file.read() if current_script==updated_script: print('up to date')