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.
2 parents a5c4029 + 1c5667d commit 1b117d3Copy full SHA for 1b117d3
src/murfey/server/api/__init__.py
@@ -1383,7 +1383,7 @@ class Dest(BaseModel):
1383
1384
@router.post("/sessions/{session_id}/make_rsyncer_destination")
1385
def make_rsyncer_destination(session_id: int, destination: Dest, db=murfey_db):
1386
- secure_path_parts = [secure_filename(p) for p in destination.destintion.parts]
+ secure_path_parts = [secure_filename(p) for p in destination.destination.parts]
1387
destination_path = "/".join(secure_path_parts)
1388
instrument_name = (
1389
db.exec(select(Session).where(Session.id == session_id)).one().instrument_name
0 commit comments