Skip to content

Commit

Permalink
Fixes print statement for failed cont. solve
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed May 9, 2024
1 parent 40a1ab1 commit eb340ed
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/uedge/rundt.py
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,8 @@ def dtsolve(dtdeltafac):
print('===== CONTINUATION SOLVE FAILED =====')
print('=====================================')
print('Last successful step for {}: {:.4e}'.format(\
self.var, self.lastsuccess)
str(list(self.var.keys())).replace('[','').replace(']',''),
self.lastsuccess)
)
return
# Start trying to reset convergence
Expand Down

0 comments on commit eb340ed

Please sign in to comment.