fixed variable name

This commit is contained in:
klangner@gmail.com 2015-02-10 10:34:44 +01:00
parent 5ea4a72b8e
commit a0299d97f5
1 changed files with 3 additions and 3 deletions

View File

@ -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"""