From 9277644f62582c1abca2baff55fba892973904c4 Mon Sep 17 00:00:00 2001 From: Daniel Dayley Date: Sun, 25 Jul 2021 19:12:20 -0600 Subject: [PATCH] Fixed typo. --- bin/python-tool | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/python-tool b/bin/python-tool index 8737cd9..dbcfc2d 100644 --- a/bin/python-tool +++ b/bin/python-tool @@ -34,8 +34,8 @@ if __name__ == '__main__': # Parse config config_path = os.path.normpath(args.config) file_descriptor = open(os.path.normpath(os.path.expanduser(os.path.expandvars(config_path)))) - self._config = yaml.safe_load(file_descriptor) - if not isinstance(self._config,dict) : + config = yaml.safe_load(file_descriptor) + if not isinstance(config,dict) : raise ValueError('expected dictonary as top-level yaml object') # Main functions