1
0
mirror of https://github.com/django/django.git synced 2025-01-19 23:02:20 +00:00

Fixed a deprecation warning in a selenium test.

This commit is contained in:
Tim Graham 2013-07-13 13:15:28 -04:00
parent 7557207983
commit 9b471a8fe3

View File

@ -6,3 +6,4 @@ from .models import Article
class ArticleFormView(UpdateView):
model = Article
success_url = '/'
fields = '__all__'