summaryrefslogtreecommitdiffstats
path: root/bitbake/lib/toaster/toastergui/urls.py
diff options
context:
space:
mode:
authorAlexandru DAMIAN <alexandru.damian@intel.com>2015-01-20 15:57:11 +0000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2015-01-23 11:33:53 +0000
commit4571c827a4491132a8e85a721c816a2a2fff3ce7 (patch)
treeaa9a3caaac6a52cec737473372e11812f31fbc04 /bitbake/lib/toaster/toastergui/urls.py
parent8e3be3f268d96f65af8d6bf62162f71783afa478 (diff)
downloadpoky-4571c827a4491132a8e85a721c816a2a2fff3ce7.tar.gz
bitbake: toastergui: fix all-targets redirect
Fixes the all targets redirect to /api/1.0/targets. [YOCTO #7147] (Bitbake rev: f1cccafb4c7aa2c338e29ec5d2ea190dfeceb132) Signed-off-by: Alexandru DAMIAN <alexandru.damian@intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake/lib/toaster/toastergui/urls.py')
-rw-r--r--bitbake/lib/toaster/toastergui/urls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bitbake/lib/toaster/toastergui/urls.py b/bitbake/lib/toaster/toastergui/urls.py
index c74c7a651b..8c3b5a85fd 100644
--- a/bitbake/lib/toaster/toastergui/urls.py
+++ b/bitbake/lib/toaster/toastergui/urls.py
@@ -77,7 +77,7 @@ urlpatterns = patterns('toastergui.views',
77 url(r'^layers/$', 'layers', name='layers'), 77 url(r'^layers/$', 'layers', name='layers'),
78 url(r'^layer/(?P<layerid>\d+)/$', 'layerdetails', name='layerdetails'), 78 url(r'^layer/(?P<layerid>\d+)/$', 'layerdetails', name='layerdetails'),
79 url(r'^layer/$', 'layerdetails', name='layerdetails'), 79 url(r'^layer/$', 'layerdetails', name='layerdetails'),
80 url(r'^targets/$', 'targets', name='targets'), 80 url(r'^targets/$', 'targets', name='all-targets'),
81 url(r'^machines/$', 'machines', name='machines'), 81 url(r'^machines/$', 'machines', name='machines'),
82 82
83 url(r'^projects/$', 'projects', name='all-projects'), 83 url(r'^projects/$', 'projects', name='all-projects'),