diff --git a/docs/changelog.rst b/docs/changelog.rst index 65561544..f289b398 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -45,6 +45,7 @@ Changes in 0.8.X - Added Doc class and pk to Validation messages (#69) - Fixed Documents deleted via a queryset don't call any signals (#105) - Added the "get_decoded" method to the MongoSession class (#216) +- Fixed invalid choices error bubbling (#214) Changes in 0.7.9 ================ diff --git a/tests/fields/__init__.py b/tests/fields/__init__.py index 86dfa840..0731838b 100644 --- a/tests/fields/__init__.py +++ b/tests/fields/__init__.py @@ -1,2 +1,2 @@ from fields import * -from file import * \ No newline at end of file +from file_tests import * \ No newline at end of file diff --git a/tests/fields/file.py b/tests/fields/file_tests.py similarity index 100% rename from tests/fields/file.py rename to tests/fields/file_tests.py