From fc72557eb186e23698dbde639957f644e2932777 Mon Sep 17 00:00:00 2001 From: Martin Gracik Date: Thu, 2 Dec 2010 12:44:16 +0100 Subject: [PATCH] Fixed pylint errors in constants.py --- src/pylorax/constants.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/pylorax/constants.py b/src/pylorax/constants.py index 8de07789..677635fc 100644 --- a/src/pylorax/constants.py +++ b/src/pylorax/constants.py @@ -29,6 +29,8 @@ from sysutils import joinpaths class LoraxRequiredCommands(dict): def __init__(self): + dict.__init__(self) + self.__path = os.environ["PATH"].split(":") logger.debug("PATH: {0}".format(self.__path))