From 53cec4a683b2d7066305c8d0e34c163d73d92338 Mon Sep 17 00:00:00 2001 From: Masato TOYOSHIMA Date: Sat, 25 Jan 2025 11:28:52 +0900 Subject: [PATCH] fix typo --- src/manjaro_hello.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/manjaro_hello.py b/src/manjaro_hello.py index 1c2809f..0487021 100755 --- a/src/manjaro_hello.py +++ b/src/manjaro_hello.py @@ -374,7 +374,7 @@ class Hello(Gtk.Window): """ filename = f"{self.preferences["data_path"]}/pages/{self.usr_prefs["locale"]}/{name}" if not os.path.isfile(filename): - f"{self.preferences["data_path"]}/pages/{self.preferences["default_locale"]/{name}" + f"{self.preferences["data_path"]}/pages/{self.preferences["default_locale"]}/{name}" try: with open(filename, "r") as fil: return fil.read()