Skip to content

Commit

Permalink
FEM: correcting string comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
Sudhanshu-Dubey14 authored and berndhahnebach committed Sep 8, 2020
1 parent f82b570 commit 4dcfd8c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Mod/Fem/femsolver/run.py
Expand Up @@ -251,7 +251,7 @@ def _getBesideBase(solver):
# doc.FileName
# the above returns an empty string in FreeCAD 0.19
# https://forum.freecadweb.org/viewtopic.php?f=10&t=48842
if path is "":
if path == "":
error_message = (
"Please save the file before executing the solver. "
"This must be done because the location of the working "
Expand Down

0 comments on commit 4dcfd8c

Please sign in to comment.