Hi,
 
I made directory GlobalModules in Products,
a there I put a file __init__.py with code:
 
from Products.PythonScripts.Utility import allow_module
 
allow_module('Products.ZSQLMethods.SQL')
 
and I try to Test Python script with code:
 
from Products.ZSQLMethods.SQL import SQL
 
so it is only library-import and now I become:
 

Error Type: TypeError
Error Value: 'in' or 'not in' needs sequence right argument

what should I do?

thanks for a help,

Adam