Skip to content

Commit 1b117d3

Browse files
committed
Merged recent changes from 'main' branch
2 parents a5c4029 + 1c5667d commit 1b117d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/murfey/server/api/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1383,7 +1383,7 @@ class Dest(BaseModel):
13831383

13841384
@router.post("/sessions/{session_id}/make_rsyncer_destination")
13851385
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]
1386+
secure_path_parts = [secure_filename(p) for p in destination.destination.parts]
13871387
destination_path = "/".join(secure_path_parts)
13881388
instrument_name = (
13891389
db.exec(select(Session).where(Session.id == session_id)).one().instrument_name

0 commit comments

Comments
 (0)