From f69ef407ba5da3cb1a7d85394e112923b77d75e1 Mon Sep 17 00:00:00 2001 From: Felipe Reyes Date: Tue, 28 Apr 2015 18:20:22 -0300 Subject: [PATCH] Fix lint warning --- 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 bd257485..060fba97 100644 --- a/unit_tests/test_utils.py +++ b/unit_tests/test_utils.py @@ -25,7 +25,7 @@ def load_config(): if not config: logging.error('Could not find config.yaml in any parent directory ' - 'of %s. ' % file) + 'of %s. ' % f) raise Exception return yaml.safe_load(open(config).read())['options']