* Updated Danish translation of debconf templates (Closes: #830639).
* Remove CVE-2016-4428_Escape_angularjs_templating_in_unsafe_HTML.patch
applied upstream.
+ * Add BaseCommand.option_list-is-gone-from-django1.10.patch.
-- Thomas Goirand <zigo@debian.org> Mon, 11 Jul 2016 14:24:50 +0200
--- /dev/null
+Description: [Django 1.10] BaseCommand.option_list is gone from Django 1.10
+Author: Thomas Goirand <zigo@debian.org>
+Forwarded: no
+Last-Update: 2016-07-19
+
+--- horizon-10.0.0~b2.orig/openstack_dashboard/management/commands/make_web_conf.py
++++ horizon-10.0.0~b2/openstack_dashboard/management/commands/make_web_conf.py
+@@ -165,7 +165,7 @@ location you desire, e.g.::
+ 'admin': context['ADMIN'],
+ 'hostname': context['VHOSTNAME'], }
+
+- option_list = BaseCommand.option_list + (
++ option_list = getattr(BaseCommand, 'option_list', ()) + (
+ # TODO(ygbo): Add an --nginx option.
+ make_option("-a", "--apache",
+ default=False, action="store_true", dest="apache",
+--- horizon-10.0.0~b2.orig/openstack_dashboard/management/commands/migrate_settings.py
++++ horizon-10.0.0~b2/openstack_dashboard/management/commands/migrate_settings.py
+@@ -75,7 +75,7 @@ class DirContext(object):
+
+
+ class Command(BaseCommand):
+- option_list = BaseCommand.option_list + (
++ option_list = getattr(BaseCommand, 'option_list', ()) + (
+ optparse.make_option(
+ '--gendiff',
+ action='store_true',