Skip to content

Commit c9249c2

Browse files
committed
fix args of return method
1 parent 74c9cbd commit c9249c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

jupyter_drives/handlers.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ async def post(self, path: str = "", drive: str = ""):
7878
@tornado.web.authenticated
7979
async def patch(self, path: str = "", drive: str = ""):
8080
body = self.get_json_body()
81-
result = await self._manager.rename_file(**body, drive, path)
81+
result = await self._manager.rename_file(drive, path, **body)
8282
self.finish(json.dump(result))
8383

8484
handlers = [

0 commit comments

Comments
 (0)