Hi, lines = somePropertyManager.getProperty('aLinesProp') ... returns always... ['', 'line1', 'line2'...] I always got an empty string at the start of the list and always need to change this by... lines = [l for l in somePropertyManager.getProperty('aLinesProp') if l != ''] --Gilles