From: Kevin Boyd Date: Sun, 29 Jul 2018 12:54:04 +0000 (-0400) Subject: Fixed syntax error in make_gromos_rtp.py X-Git-Url: http://biod.pnpi.spb.ru/gitweb/?a=commitdiff_plain;h=72d0d53fc1cd1d0ccf0519df5d359e0a3c5d122a;p=alexxy%2Fgromacs.git Fixed syntax error in make_gromos_rtp.py Didn't affect the resulting rtp if everything else was in order, just prevented an error message. Refs #2557 Change-Id: I5289db159b62abde31103841c33d2b90f4a7717e --- diff --git a/scripts/make_gromos_rtp.py b/scripts/make_gromos_rtp.py index 09b1b93377..f4b14f0186 100755 --- a/scripts/make_gromos_rtp.py +++ b/scripts/make_gromos_rtp.py @@ -123,7 +123,7 @@ class Cin: for i in range(len(list)): if list[i] == string: return i - print >> sys.stderr "Could not find string",string,"in list of length",len(list) + print >> sys.stderr, "Could not find string", string, "in list of length", len(list) return -1 #--------------------------#