Skip to content

Commit

Permalink
Minor fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidSagan committed Jul 10, 2024
1 parent 2ee217d commit d9a0e97
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tao/version/tao_version_mod.f90
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,5 @@
!-

module tao_version_mod
character(*), parameter :: tao_version_date = "2024/07/07 20:20:56"
character(*), parameter :: tao_version_date = "2024/07/08 18:14:10"
end module
2 changes: 1 addition & 1 deletion util_programs/mad_to_bmad/mad8_to_bmad.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ def order_var_def_list():
new_def_list.insert(0, ['! Duplicate: ' + vdef[0], vdef[1]])
else:
new_def_list.insert(0, vdef)
exp_list = re.split('\+|-|\*|/|\(|\)|\^|,', vdef[1])
exp_list = re.split(r'\+|-|\*|/|\(|\)|\^|,', vdef[1])
dependent_list[vdef[0]] = list(x.split() for x in exp_list)

common.var_def_list = new_def_list
Expand Down
2 changes: 1 addition & 1 deletion util_programs/mad_to_bmad/madx_to_bmad.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ def order_var_def_list():
new_def_list.insert(0, ['! Duplicate: ' + vdef[0], vdef[1]])
else:
new_def_list.insert(0, vdef)
exp_list = re.split('\+|-|\*|/|\(|\)|\^|,', vdef[1])
exp_list = re.split(r'\+|-|\*|/|\(|\)|\^|,', vdef[1])
dependent_list[vdef[0]] = list(x.split() for x in exp_list)

common.var_def_list = new_def_list
Expand Down

0 comments on commit d9a0e97

Please sign in to comment.