From 59359df9334aeddd4ff09fa562028621b0c67a96 Mon Sep 17 00:00:00 2001 From: Ryan Beisner Date: Thu, 1 Nov 2018 14:55:15 -0500 Subject: [PATCH] Fix lint in unit test Change-Id: Ia7a49ecdec95cc64ac82d85ae530d6dbde63aa26 --- unit_tests/test_utils.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/unit_tests/test_utils.py b/unit_tests/test_utils.py index 2802705b..2da38894 100644 --- a/unit_tests/test_utils.py +++ b/unit_tests/test_utils.py @@ -41,7 +41,7 @@ def load_config(): if not config: logging.error('Could not find config.yaml in any parent directory ' - 'of %s. ' % file) + 'of %s. ' % __file__) raise Exception return yaml.safe_load(open(config).read())['options']