Skip to content
Open

Typo #69

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion djangotoolbox/db/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -476,7 +476,7 @@ def _value_for_db_collection(self, value, field, field_kind, db_type,
for subvalue in value)

# "list" may be used for SetField.
if db_type in 'list':
if db_type == 'list':
return list(value)
elif db_type == 'set':
# assert field_kind != 'ListField'
Expand Down