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 4ab1fa9 commit e11ce93Copy full SHA for e11ce93
jupyter_rtc_core/outputs/handlers.py
@@ -1,6 +1,3 @@
1
-# Copyright (c) Jupyter Development Team.
2
-# Distributed under the terms of the Modified BSD License.
3
-
4
import json
5
6
from tornado import web
@@ -23,7 +20,7 @@ def outputs(self):
23
20
@authorized
24
21
async def get(self, file_id=None, cell_id=None, output_index=None):
25
22
try:
26
- output = self.outputs.get(file_id, cell_id, output_index)
+ output = self.outputs.get_output(file_id, cell_id, output_index)
27
except (FileNotFoundError, KeyError):
28
self.set_status(404)
29
self.finish({"error": "Output not found."})
0 commit comments