From 052531fd6b0fbd8012412a38a2749c74dc5062d5 Mon Sep 17 00:00:00 2001 From: Hugo Posnic Date: Sun, 18 Dec 2016 12:15:52 +0100 Subject: [PATCH] Fix error --- 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 396ae73..3bff148 100644 --- a/src/manjaro_hello.py +++ b/src/manjaro_hello.py @@ -18,7 +18,7 @@ class ManjaroHello(): # Path vars if os.path.basename(sys.argv[0]) == self.app: - self.data_path = "/usr/share/" + self.app + "/data"/ + self.data_path = "/usr/share/" + self.app + "/data/" self.locale_path = "/usr/share/locale/" self.ui_path = "/usr/share/" + self.app + "/ui/" self.desktop_path = "/usr/share/applications/" + self.app + ".desktop"