Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/ansys/mapdl/core/_commands/session/run_controls.py
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ def cwd(self, dirpath="", **kwargs):
dirpath = str(dirpath)
if not (dirpath.startswith("'") and dirpath.endswith("'")) and "'" in dirpath:
raise MapdlRuntimeError(
'The CWD command does not accept paths that contain singular quotes "'
'The CWD command does not accept paths that contain singular quotes "\'".'
)
return self.run(f"/CWD,'{dirpath}'", **kwargs)

Expand Down
Loading