Skip to content

Commit

Permalink
fix logger.flush
Browse files Browse the repository at this point in the history
  • Loading branch information
fishjojo committed Nov 11, 2024
1 parent 088d79e commit ea6cf3e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyscfad/lib/logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def _partial_eval_msg(msg, args):
if remaining_args:
arg = remaining_args.pop(0)
if not util.is_tracer(arg):
partially_evaluated_msg += spec % arg
partially_evaluated_msg += spec % (arg,)
else:
partially_evaluated_msg += spec
tracer_args.append(arg)
Expand Down

0 comments on commit ea6cf3e

Please sign in to comment.