Bug #2557
Updated by Mark Abraham over 2 years ago
The script make_gromos_rtp.py has a sytax error and is missing a ',' on line 126. The line reads
print >> sys.stderr "Could not find string",string,"in list of length",len(list)
normally, however the correct syntax is
print >> sys.stderr, "Could not find string",string,"in list of length",len(list)
by adding the comma after sys.stderr. While Why this wasn't a huge issue to fix, I hope that it can be updated so that others who download the package do not run into the same issue.
Thanks,
Logan
print >> sys.stderr "Could not find string",string,"in list of length",len(list)
normally, however the correct syntax is
print >> sys.stderr, "Could not find string",string,"in list of length",len(list)
by adding the comma after sys.stderr. While Why this wasn't a huge issue to fix, I hope that it can be updated so that others who download the package do not run into the same issue.
Thanks,
Logan