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 6b01279 commit 83b31f6Copy full SHA for 83b31f6
shiny/bookmark/_bookmark.py
@@ -558,6 +558,13 @@ async def do_bookmark(self) -> None:
558
await self.show_bookmark_url_modal(full_url)
559
560
except Exception as e:
561
+ # TODO: REMOVE TEMP CODE w/ TRACEBACKS
562
+ import sys
563
+ import traceback
564
+
565
+ # Starting in Python 3.10 this could be traceback.print_exception(e)
566
+ traceback.print_exception(*sys.exc_info())
567
568
msg = f"Error bookmarking state: {e}"
569
from ..ui._notification import notification_show
570
0 commit comments