From 2cbc34f284661967980d261c0445198478ee718f Mon Sep 17 00:00:00 2001 From: WhatDidYouExpect Date: Thu, 3 Apr 2025 23:39:27 +0200 Subject: [PATCH] forgot a fucking indent --- bot.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bot.py b/bot.py index 9037b4e..138041e 100644 --- a/bot.py +++ b/bot.py @@ -207,10 +207,10 @@ def check_for_update(): if local_version == latest_version: print(f"{GREEN}{get_translation(LOCALE, 'latest_version')} {local_version}{RESET}") print(f"{get_translation(LOCALE, 'latest_version2').format(VERSION_URL=VERSION_URL)}\n\n") - if gooberhash != currenthash: - print(f"{YELLOW}{get_translation(LOCALE, 'modification_warning')}") - print(f"{YELLOW}{get_translation(LOCALE, 'reported_version')} {local_version}{RESET}") - print(f"{DEBUG}{get_translation(LOCALE, 'current_hash')} {currenthash}{RESET}") + if gooberhash != currenthash: + print(f"{YELLOW}{get_translation(LOCALE, 'modification_warning')}") + print(f"{YELLOW}{get_translation(LOCALE, 'reported_version')} {local_version}{RESET}") + print(f"{DEBUG}{get_translation(LOCALE, 'current_hash')} {currenthash}{RESET}") check_for_update()