summaryrefslogtreecommitdiff
path: root/tests/forms_tests
diff options
context:
space:
mode:
authorTim Graham <timograham@gmail.com>2014-03-21 06:24:45 -0400
committerTim Graham <timograham@gmail.com>2014-03-21 06:24:45 -0400
commit35f46ec7a99291a560e374183ab4feba2a5c679a (patch)
treefecfe00b20f9ff82786df79ee25ca48d8f1124a0 /tests/forms_tests
parent86c89265698f636107a31f3538d2cd604049990d (diff)
Fixed flake8 warnings.
Diffstat (limited to 'tests/forms_tests')
-rw-r--r--tests/forms_tests/tests/test_validators.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/forms_tests/tests/test_validators.py b/tests/forms_tests/tests/test_validators.py
index c69597b497..2f42d2ad44 100644
--- a/tests/forms_tests/tests/test_validators.py
+++ b/tests/forms_tests/tests/test_validators.py
@@ -29,10 +29,10 @@ class UserForm(forms.Form):
max_length=50,
validators=[
validators.RegexValidator(
- regex='^[a-z]*$',
- message="Letters only.",
- flags=re.IGNORECASE,
- )
+ regex='^[a-z]*$',
+ message="Letters only.",
+ flags=re.IGNORECASE,
+ )
]
)