Skip to content

Commit

Permalink
Updated Changelog / AUTHORS
Browse files Browse the repository at this point in the history
  • Loading branch information
rozza committed Jul 11, 2012
1 parent a91b6bf commit 2405ba8
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion AUTHORS
Expand Up @@ -110,4 +110,5 @@ that much better:
* Andrey Fedoseev
* aparajita
* Tristan Escalada
* Jaime Irurzun
* Jaime Irurzun
* Alexandre González
2 changes: 2 additions & 0 deletions docs/changelog.rst
Expand Up @@ -4,6 +4,8 @@ Changelog

Changes in 0.6.14
=================
- Allow tuples for index meta
- Fixed use of str in instance checks
- Fixed unicode support in transform update
- Added support for add_to_set and each

Expand Down
2 changes: 1 addition & 1 deletion mongoengine/base.py
Expand Up @@ -706,7 +706,7 @@ def __new__(cls, name, bases, attrs):
meta['queryset_class'] = manager.queryset_class
new_class.objects = manager

indicies = [meta['indexes']] + abstract_base_indexes
indicies = list(meta['indexes']) + abstract_base_indexes
user_indexes = [QuerySet._build_index_spec(new_class, spec)
for spec in indicies] + base_indexes
new_class._meta['indexes'] = user_indexes
Expand Down

0 comments on commit 2405ba8

Please sign in to comment.