From 89c94c14cc78f8027edc13750eda23c03a4435b2 Mon Sep 17 00:00:00 2001 From: stack Date: Sat, 20 Apr 2013 20:08:23 +0200 Subject: [PATCH] fix path in settings.py also for windows --- dboxswitch/settings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dboxswitch/settings.py b/dboxswitch/settings.py index b604488..6438107 100644 --- a/dboxswitch/settings.py +++ b/dboxswitch/settings.py @@ -43,8 +43,8 @@ class Settings(): self.appname = "dboxswitch" self.appversion = "0.1" - if os.path.isdir(os.path.join(__location__,"/icons")): - path = os.path.join(__location__,"/icons") + if os.path.isdir(os.path.join(__location__,"icons")): + path = os.path.join(__location__,"icons") else: path = "" try: -- 2.20.1