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 882618f + 1c5667d commit d8b69b3Copy full SHA for d8b69b3
src/murfey/server/api/__init__.py
@@ -1377,7 +1377,7 @@ class Dest(BaseModel):
1377
1378
@router.post("/sessions/{session_id}/make_rsyncer_destination")
1379
def make_rsyncer_destination(session_id: int, destination: Dest, db=murfey_db):
1380
- secure_path_parts = [secure_filename(p) for p in destination.destintion.parts]
+ secure_path_parts = [secure_filename(p) for p in destination.destination.parts]
1381
destination_path = "/".join(secure_path_parts)
1382
instrument_name = (
1383
db.exec(select(Session).where(Session.id == session_id)).one().instrument_name
0 commit comments