summaryrefslogtreecommitdiff
path: root/horizon/__init__.py
diff options
context:
space:
mode:
authorGabriel Hurley <gabriel@strikeawe.com>2012-03-26 18:08:48 -0700
committerGabriel Hurley <gabriel@strikeawe.com>2012-03-26 18:22:07 -0700
commitac712468029ea2981e912da36afd74a9a5de67bf (patch)
tree88bf8cbba2edda5b115042fe776c5a8ae523e7d8 /horizon/__init__.py
parenta5d5b4f288b509342bbec57adff8ed94a829354e (diff)
downloadhorizon-ac712468029ea2981e912da36afd74a9a5de67bf.tar.gz
Adds PanelGroup class and site customization hook.
* Adds a PanelGroup class and slightly reworks the way panel ordering is handled to fix bug 963550. * Adds the option to load a python module containing site customizations after the site is fully initialized, but before the URLConf is dynamically constructed. Fixes bug 965839. Change-Id: Idc5358f2db6751494bcdfc382ec3bb6af65199b9
Diffstat (limited to 'horizon/__init__.py')
-rw-r--r--horizon/__init__.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/horizon/__init__.py b/horizon/__init__.py
index bd6380a36..71479fb96 100644
--- a/horizon/__init__.py
+++ b/horizon/__init__.py
@@ -26,7 +26,7 @@ methods like :func:`~horizon.register` and :func:`~horizon.unregister`.
# should that fail.
Horizon = None
try:
- from horizon.base import Horizon, Dashboard, Panel, Workflow
+ from horizon.base import Horizon, Dashboard, Panel, PanelGroup
except ImportError:
import warnings