Skip to content

Commit

Permalink
Missing comma (#4889)
Browse files Browse the repository at this point in the history
  • Loading branch information
michael-borisov authored and tomchristie committed Feb 8, 2017
1 parent cbad236 commit 176831e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/api-guide/serializers.md
Original file line number Diff line number Diff line change
Expand Up @@ -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'}
}

Expand Down

0 comments on commit 176831e

Please sign in to comment.