gists: Fix wrong default value in colander schema. #4243
This commit is contained in:
parent
cc96354c0b
commit
9afa669170
1 changed files with 1 additions and 1 deletions
|
|
@ -177,7 +177,7 @@ class GistSchema(colander.MappingSchema):
|
|||
|
||||
gist_type = colander.SchemaNode(
|
||||
colander.String(),
|
||||
missing=Gist.ACL_LEVEL_PUBLIC,
|
||||
missing=Gist.GIST_PUBLIC,
|
||||
validator=colander.OneOf([Gist.GIST_PRIVATE, Gist.GIST_PUBLIC]))
|
||||
|
||||
nodes = Nodes()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue