Skip to content

Commit

Permalink
More tweaks to the save() method.
Browse files Browse the repository at this point in the history
  • Loading branch information
desilinguist committed Mar 5, 2020
1 parent 4db3bf2 commit 7e2b9f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion rsmtool/configuration_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -550,7 +550,7 @@ def save(self, output_dir=None):
output_dir = Path(getcwd())

# Create output directory, if it does not exist
output_dir = Path(output_dir) / 'output'
output_dir = Path(output_dir).resolve() / 'output'
output_dir.mkdir(exist_ok=True)

id_field = ID_FIELDS[self._context]
Expand Down

0 comments on commit 7e2b9f2

Please sign in to comment.