Makefile to clean pyc
[stack/code/dboxswitch.git] / settings.py
index 43d7bb7..3b7fdb1 100644 (file)
@@ -37,14 +37,15 @@ import os, sys
 class Settings():
     def __init__(self):
         path = __file__ if __file__ is not None else sys.argv[0]
-        __location__ = os.path.realpath(
-                os.path.join(os.getcwd(), os.path.dirname(path)))
+        __location__ = os.path.realpath(os.path.join(os.getcwd(), 
+            os.path.dirname(path)))
 
-        print(os.path.join(__location__,"icon.png"))
         self.appname = "dboxswitch"
         self.appversion = "0.1"
-        self.icon    = os.path.join(__location__,"icon.png")
-        self.cpicon  = os.path.join(__location__,"current-profile.png")
+        self.icon     = os.path.join(__location__,"icon.png")
+        self.cpicon   = os.path.join(__location__,"current-profile.png")
+        self.delpicon = os.path.join(__location__,"delete.png")
+        self.addpicon = os.path.join(__location__,"add.png")
 
 global conf
 appconf = Settings()