Fix docs error with deconstruct() docs

This commit is contained in:
Andrew Godwin 2014-05-03 16:18:13 -07:00
parent faa8c71fd9
commit 13ec89f267
1 changed files with 1 additions and 1 deletions

View File

@ -289,7 +289,7 @@ into ``kwargs`` yourself::
"Implements comma-separated storage of lists"
def __init__(self, separator=",", *args, **kwargs):
self.separator = ","
self.separator = separator
super(CommaSepField, self).__init__(*args, **kwargs)
def deconstruct(self):