From 03c5592647a882dcef404ee8d52ea70a1a13a4f4 Mon Sep 17 00:00:00 2001 From: Mark Spicer Date: Thu, 12 Nov 2015 13:54:21 -0500 Subject: [PATCH] Removed unecessary directory addition. --- Openroast.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Openroast.py b/Openroast.py index a56f18f..accfa1d 100755 --- a/Openroast.py +++ b/Openroast.py @@ -13,7 +13,7 @@ def get_script_dir(follow_symlinks=True): if getattr(sys, 'frozen', False): path = os.path.abspath(sys.executable) else: - path = inspect.getabsfile(get_script_dir + '/lib') + path = inspect.getabsfile(get_script_dir) if follow_symlinks: path = os.path.realpath(path)