From 2399868168de98e71d3c3cfdf1d5c3d3784aeece Mon Sep 17 00:00:00 2001 From: Vinicius Moreira Date: Mon, 17 Jun 2019 14:19:12 -0300 Subject: [PATCH] Fix: loading resources from .local/share/fpakman/resources --- fpakman/core/resource.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fpakman/core/resource.py b/fpakman/core/resource.py index b4eed7de..3998b95e 100755 --- a/fpakman/core/resource.py +++ b/fpakman/core/resource.py @@ -8,6 +8,6 @@ app_dir = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) def get_path(resource_path): if os.path.exists(local_resource_path): - return local_resource_path + resource_path + return local_resource_path + '/' + resource_path else: return app_dir + '/resources/' + resource_path