Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion hydralit/hydra_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
from hydralit.loading_app import LoadingApp
import hydralit_components as hc
from hydralit.wrapper_class import Templateapp
import traceback


class HydraApp(object):
Expand Down Expand Up @@ -283,7 +284,7 @@ def _run_selected(self):
except Exception as e:
st.error(
'😭 Error triggered from app: **{}**'.format(self.session_state.selected_app))
st.error('Details: {}'.format(e))
st.error("Details: \n```\n{}\n```\n".format(traceback.format_exc()))

def _clear_session_values(self):
for key in st.session_state:
Expand Down