# HG changeset patch # User lbessard # Date 1200328532 -3600 # Node ID 5ef987c1b9272bbd27b6b3a3577c001711c90043 # Parent cc70dd43060129e8dc475265360d9942a6042f90 Bug on array initial value parsing fixed diff -r cc70dd430601 -r 5ef987c1b927 plcopen/plcopen.py --- a/plcopen/plcopen.py Mon Jan 14 17:35:05 2008 +0100 +++ b/plcopen/plcopen.py Mon Jan 14 17:35:32 2008 +0100 @@ -1554,7 +1554,7 @@ return self.content["value"].getValue() setattr(cls, "getValue", getValue) -def extractValues(self, values): +def extractValues(values): items = values.split(",") i = 1 while i < len(items):