diff options
| author | Corey Bryant <corey.bryant@canonical.com> | 2016-06-21 17:44:45 (GMT) |
|---|---|---|
| committer | Corey Bryant <corey.bryant@canonical.com> | 2016-06-21 17:44:45 (GMT) |
| commit | 55e2f7ec3666d66d5cbc7e22d12f90bcd60163fa (patch) | |
| tree | 293b9d720ef7bf48cae7312bcb614536029c2ce6 | |
| parent | a88923d7dc195788fc040a663127790b922b3bf6 (diff) | |
d/theme/ubuntu_theme.py: When setting UBUNTU_THEME for AVAILABLE_THEMES, use the symlinked path that already exists under /usr/share/openstack-dashboard/openstack_dashboard (LP: #1594249).
| -rw-r--r-- | debian/changelog | 8 | ||||
| -rw-r--r-- | debian/theme/ubuntu_theme.py | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/debian/changelog b/debian/changelog index e5e9afa..dc4751c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,11 @@ +horizon (2:9.0.1-0ubuntu2) UNRELEASED; urgency=medium + + * d/theme/ubuntu_theme.py: When setting UBUNTU_THEME for AVAILABLE_THEMES, + use the symlinked path that already exists under + /usr/share/openstack-dashboard/openstack_dashboard (LP: #1594249). + + -- Corey Bryant <corey.bryant@canonical.com> Tue, 21 Jun 2016 13:41:09 -0400 + horizon (2:9.0.1-0ubuntu1) xenial; urgency=medium * New upstream point release for OpenStack Mitaka (LP: #1591248). diff --git a/debian/theme/ubuntu_theme.py b/debian/theme/ubuntu_theme.py index 37143bb..f539af8 100644 --- a/debian/theme/ubuntu_theme.py +++ b/debian/theme/ubuntu_theme.py @@ -4,7 +4,7 @@ # openstack-dashboard-ubuntu-theme package, or remove this file. import os -UBUNTU_THEME = "/usr/share/openstack-dashboard-ubuntu-theme/static/themes/ubuntu" +UBUNTU_THEME = "/usr/share/openstack-dashboard/openstack_dashboard/static/themes/ubuntu" if os.path.exists(UBUNTU_THEME): AVAILABLE_THEMES = [ |
