Fix docs error with deconstruct() docs
This commit is contained in:
parent
faa8c71fd9
commit
13ec89f267
|
@ -289,7 +289,7 @@ into ``kwargs`` yourself::
|
||||||
"Implements comma-separated storage of lists"
|
"Implements comma-separated storage of lists"
|
||||||
|
|
||||||
def __init__(self, separator=",", *args, **kwargs):
|
def __init__(self, separator=",", *args, **kwargs):
|
||||||
self.separator = ","
|
self.separator = separator
|
||||||
super(CommaSepField, self).__init__(*args, **kwargs)
|
super(CommaSepField, self).__init__(*args, **kwargs)
|
||||||
|
|
||||||
def deconstruct(self):
|
def deconstruct(self):
|
||||||
|
|
Loading…
Reference in New Issue