Skip to content

Commit

Permalink
Merge pull request #179 from aniketinamdar/aniketinamdar-fix-issue-177
Browse files Browse the repository at this point in the history
Path Split at last point instead of first. Issue #177
  • Loading branch information
VikParuchuri committed Jun 17, 2024
2 parents 26ee10c + c5f08cd commit 0d6f8da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion marker/output.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@


def get_subfolder_path(out_folder, fname):
subfolder_name = fname.split(".")[0]
subfolder_name = fname.rsplit('.', 1)[0]
subfolder_path = os.path.join(out_folder, subfolder_name)
return subfolder_path

Expand Down

0 comments on commit 0d6f8da

Please sign in to comment.