From 1ca098c40291ff205e64080dbb1877e8083c3c67 Mon Sep 17 00:00:00 2001 From: Ross Lawley Date: Mon, 28 Jan 2013 14:40:26 +0000 Subject: [PATCH] Fixed invalid choices error bubbling (#214) --- docs/changelog.rst | 1 + tests/fields/__init__.py | 2 +- tests/fields/{file.py => file_tests.py} | 0 3 files changed, 2 insertions(+), 1 deletion(-) rename tests/fields/{file.py => file_tests.py} (100%) 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