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 c865b42 commit d1de606Copy full SHA for d1de606
activity_browser/ui/web/navigator.py
@@ -275,7 +275,7 @@ def update_datasets(self):
275
try:
276
self.nodes = [get_activity(act.key) for act in self.nodes]
277
self.edges = [Edge(document=ExchangeDataset.get_by_id(exc._document.id)) for exc in self.edges]
278
- except ActivityDataset.DoesNotExist:
+ except (ActivityDataset.DoesNotExist, ExchangeDataset.DoesNotExist):
279
280
get_activity(self.central_activity.key) # test whether the activity still exists
281
self.new_graph(self.central_activity.key) # if so, create a new graph
0 commit comments