Named correctly, and fixed to work with Le Potato

This commit is contained in:
2026-02-24 23:46:36 -06:00
parent d2c8079231
commit 80697c7da5
8 changed files with 40 additions and 42 deletions

View File

@@ -8,7 +8,7 @@ from state import MessageState
def main() -> None:
parser = argparse.ArgumentParser(description="Sahsa Clock Display")
parser = argparse.ArgumentParser(description="KH Clock Display")
parser.add_argument(
"--dev",
action="store_true",
@@ -39,7 +39,7 @@ def main() -> None:
try:
asyncio.run(run_server(state, config))
except KeyboardInterrupt:
print("\n[sahsa-clock] Shutting down.")
print("\n[KH-clock] Shutting down.")
sys.exit(0)