> We modified the script and it is loading now
Could you explain briefly what was the original issue?
Regarding the latter, I'm not sure it's Gluu-related issue.. May be you should try to do some debugging now? Change script's storage method to "File" for convenience and utilize Python's exceptions catching features to make sure all of them are registered. Something like this:
```
...
import sys
...
try:
...
some block of code
...
except Exception, ex:
print "Debugging point #1"
print "Unexpected error:", ex
except:
print "Debugging point #2"
print "Unexpected error:", sys.exc_info()[0]
```
You could also take this code snippet out of Gluu's script and run it in some simple standalone script to make sure it works at all.