From 6970ef4d11423242161d1db5d1961e08901d3a3d Mon Sep 17 00:00:00 2001 From: SpookyDervish <78246495+SpookyDervish@users.noreply.github.com> Date: Thu, 30 Oct 2025 18:29:18 +1100 Subject: [PATCH] fixed a typo --- main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.py b/main.py index ad6a766..6b9f6aa 100644 --- a/main.py +++ b/main.py @@ -244,7 +244,7 @@ class Berry(App): code_editor.language = theme_mappings.get(file_extension, None) code_editor.disabled = False except UnicodeDecodeError: - code_editor.text = "This file is in binary, it can't be openned. Sorry." + code_editor.text = "This file is in binary, it can't be opened. Sorry." code_editor.language = None code_editor.disabled = True