From 9ad177ac319f263718d8b5e4ad22b02d5d0c6bfb Mon Sep 17 00:00:00 2001 From: Ryan Beisner Date: Thu, 1 Nov 2018 14:58:41 -0500 Subject: [PATCH] Fix lint in unit test Change-Id: I57d620efef53e7a2cea9c731cfb90baa77ff6157 --- 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 d5ac4edf..ea09d935 100644 --- a/unit_tests/test_utils.py +++ b/unit_tests/test_utils.py @@ -42,7 +42,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']