From c27a2c150eab06cf98cf862d35cad559d6b9c621 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20De=C3=A1k?= Date: Sun, 26 Jul 2020 16:49:05 +1000 Subject: [PATCH] Work on scripts. --- Scripts/Detail/Config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Detail/Config.py b/Scripts/Detail/Config.py index 7daf55b..7ac26c9 100644 --- a/Scripts/Detail/Config.py +++ b/Scripts/Detail/Config.py @@ -164,7 +164,7 @@ class Configuration(): def variableList( self ): - return dict( ( name, getattr( self, name ) ) for name in dir( self ) if not callable( getattr( self, name ) ) and not name.startswith( '__' ) ) + return dict( ( name, getattr( self, name ) ) for name in dir( self ) if not callable( getattr( self, name ) ) and not name.startswith( '__' ) ) scriptPath = utility.joinPath( utility.basePathAtSource( __file__ ), ".." ) configPath = utility.joinPath( scriptPath, "config.txt" )