From: Ondrej Lichtner olichtne@redhat.com
All LNST object should now be using a local config object instead of a global one so this can be removed.
Signed-off-by: Ondrej Lichtner olichtne@redhat.com --- lnst/Common/Config.py | 6 ------ 1 file changed, 6 deletions(-)
diff --git a/lnst/Common/Config.py b/lnst/Common/Config.py index afeab42..3745094 100644 --- a/lnst/Common/Config.py +++ b/lnst/Common/Config.py @@ -318,9 +318,3 @@ class Config(): string = str(value)
return string - -#Global object containing lnst configuration, available across modules -#The object is created here but the contents are initialized -#in lnst-ctl and lnst-slave, after that the modules that need the configuration -#just import this object -lnst_config = Config()