From 292bd877d3d03d7291553d7dff52c81582134d3c Mon Sep 17 00:00:00 2001 From: Ryan Beisner <ryan.beisner@canonical.com> Date: Thu, 1 Nov 2018 14:58:52 -0500 Subject: [PATCH] Fix lint in unit test Change-Id: I0921c5508a64e986fe9ad943700276e68fe7e4ba --- 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 6139082..2b89c1d 100644 --- a/unit_tests/test_utils.py +++ b/unit_tests/test_utils.py @@ -50,7 +50,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'] -- GitLab