Skip to content
Snippets Groups Projects
Commit 1d16c9c0 authored by Alejandra Gonzalez's avatar Alejandra Gonzalez
Browse files

Added same fix to the mass as previous commit

parent 92f1b03a
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ def wfile_get_mass(fname):
fname : Name of the file to parse for information
"""
s = extract_comments(fname, '#')
return float(re.findall("\d+\.\d+",s[1])[0])
return float(s[1].split("=")[1])
# BAM specials
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment