Missing comma (#4889)

This commit is contained in:
Michael Borisov 2017-02-08 18:17:58 +03:00 committed by Tom Christie
parent cbad236f6d
commit 176831e22b

View File

@ -700,7 +700,7 @@ You can override a URL field view name and lookup field by using either, or both
model = Account
fields = ('account_url', 'account_name', 'users', 'created')
extra_kwargs = {
'url': {'view_name': 'accounts', 'lookup_field': 'account_name'}
'url': {'view_name': 'accounts', 'lookup_field': 'account_name'},
'users': {'lookup_field': 'username'}
}