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 74c9cbd commit c9249c2Copy full SHA for c9249c2
jupyter_drives/handlers.py
@@ -78,7 +78,7 @@ async def post(self, path: str = "", drive: str = ""):
78
@tornado.web.authenticated
79
async def patch(self, path: str = "", drive: str = ""):
80
body = self.get_json_body()
81
- result = await self._manager.rename_file(**body, drive, path)
+ result = await self._manager.rename_file(drive, path, **body)
82
self.finish(json.dump(result))
83
84
handlers = [
0 commit comments