Skip to content

Commit

Permalink
FIX: Exception message typo
Browse files Browse the repository at this point in the history
  • Loading branch information
SMoraisAnsys committed Mar 26, 2024
1 parent af618fb commit ec2c79c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyaedt/application/Design.py
Original file line number Diff line number Diff line change
Expand Up @@ -1180,7 +1180,7 @@ def oproject(self, proj_name=None):
self.logger.info("Project %s has been opened.", self._oproject.GetName())
time.sleep(0.5)
elif settings.force_error_on_missing_project and ".aedt" in proj_name:
raise Exception("Project doesn't exists. Check it and retry.")
raise Exception("Project doesn't exist. Check it and retry.")
else:
project_list = self.odesktop.GetProjectList()
self._oproject = self.odesktop.NewProject()
Expand Down

0 comments on commit ec2c79c

Please sign in to comment.