We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb3208a commit cc51c07Copy full SHA for cc51c07
django_plotly_dash/dash_wrapper.py
@@ -56,7 +56,10 @@ def get_local_stateless_by_name(name):
56
'''
57
name = slugify(name)
58
# TODO wrap this in raising a 404 if not found
59
- return usable_apps[name]
+ try:
60
+ return usable_apps[name]
61
+ except:
62
+ raise KeyError("Unable to find stateless DjangoApp called %s"%name)
63
64
class Holder:
65
'Helper class for holding configuration options'
0 commit comments