horizon (2:8.0.0-4) unstable; urgency=medium
+ * Added do-not-use-django.utils.log.NullHandler.patch
* Added do-not-use-importlib-from-django.patch.
-- Thomas Goirand <zigo@debian.org> Mon, 11 Jan 2016 02:54:28 +0000
--- /dev/null
+Description: Do not use django.utils.log.NullHandler
+ This was removed from Django 1.9
+Author: Thomas Goirand <zigo@debian.org>
+Forwarded: no
+Last-Update: 2016-01-11
+
+--- horizon-8.0.0.orig/horizon/test/settings.py
++++ horizon-8.0.0/horizon/test/settings.py
+@@ -157,7 +157,7 @@ LOGGING = {
+ 'handlers': {
+ 'null': {
+ 'level': 'DEBUG',
+- 'class': 'django.utils.log.NullHandler',
++ 'class': 'logging.NullHandler',
+ },
+ 'test': {
+ 'level': 'ERROR',
+--- horizon-8.0.0.orig/openstack_dashboard/local/local_settings.py.example
++++ horizon-8.0.0/openstack_dashboard/local/local_settings.py.example
+@@ -395,7 +395,7 @@ LOGGING = {
+ 'handlers': {
+ 'null': {
+ 'level': 'DEBUG',
+- 'class': 'django.utils.log.NullHandler',
++ 'class': 'logging.NullHandler',
+ },
+ 'console': {
+ # Set the level to "DEBUG" for verbose output logging.
fix-dashboard-manage.patch
fixed-horizon-MANIFEST.in.patch
do-not-use-importlib-from-django.patch
+do-not-use-django.utils.log.NullHandler.patch