X-Git-Url: https://v.licheni.net/stack/code/dboxswitch.git/blobdiff_plain/6f9c3cf64e400c27aacc72492f37874bdf1a602d..ed21cea32a80572106e5776a44e1b1edd7baa580:/settings.py?ds=sidebyside diff --git a/settings.py b/settings.py index 43d7bb7..7e8e1f0 100644 --- a/settings.py +++ b/settings.py @@ -37,14 +37,14 @@ 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") global conf appconf = Settings()