Skip to content

Commit

Permalink
FEM: py3, set prints in brackets
Browse files Browse the repository at this point in the history
  • Loading branch information
berndhahnebach committed Aug 31, 2017
1 parent 4454157 commit 28a09e2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Mod/Fem/FemCalculix/SolverObject.py
Expand Up @@ -174,7 +174,7 @@ def editSupported(self):

def edit(self, directory):
pattern = os.path.join(directory, "*.inp")
print pattern
print(pattern)
f = glob.glob(pattern)[0]
FemGui.open(f)

Expand Down
2 changes: 1 addition & 1 deletion src/Mod/Fem/FemZ88/SolverObject.py
Expand Up @@ -77,7 +77,7 @@ def editSupported(self):

def edit(self, directory):
pattern = os.path.join(directory, "*.txt")
print pattern
print(pattern)
f = glob.glob(pattern)[0]
FemGui.open(f)

Expand Down

0 comments on commit 28a09e2

Please sign in to comment.