Skip to content

Commit 17f16d8

Browse files
committed
Minor cleanup on outputs handlers.
1 parent 8c2a0b3 commit 17f16d8

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

jupyter_rtc_core/outputs/handlers.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
# Copyright (c) Jupyter Development Team.
2-
# Distributed under the terms of the Modified BSD License.
3-
41
import json
52

63
from tornado import web
@@ -23,7 +20,7 @@ def outputs(self):
2320
@authorized
2421
async def get(self, file_id=None, cell_id=None, output_index=None):
2522
try:
26-
output = self.outputs.get(file_id, cell_id, output_index)
23+
output = self.outputs.get_output(file_id, cell_id, output_index)
2724
except (FileNotFoundError, KeyError):
2825
self.set_status(404)
2926
self.finish({"error": "Output not found."})

0 commit comments

Comments
 (0)