From a0299d97f56d1d034ac5178d1c1ef9da57aa0cde Mon Sep 17 00:00:00 2001 From: "klangner@gmail.com" Date: Tue, 10 Feb 2015 10:34:44 +0100 Subject: [PATCH] fixed variable name --- conftest.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/conftest.py b/conftest.py index 1c221491e..258a670dd 100644 --- a/conftest.py +++ b/conftest.py @@ -10,9 +10,9 @@ if 'django' not in optional_features: if six.PY3: for line in open('tests/py3-ignores.txt'): - filePath = line.strip() - if len(filePath) > 0 and filePath[0] != '#': - collect_ignore.append(filePath) + file_path = line.strip() + if len(file_path) > 0 and file_path[0] != '#': + collect_ignore.append(file_path) class LogObservers: """Class for keeping track of log observers across test modules"""