Comment 3 for bug 1464105

Revision history for this message
szczuro (szczur0) wrote :

I had similar problem with urllib/urllib2, script worked in sikuli 1.0.1 but in 1.1.0 not
Finally I made connection through java, since jython could import java modules

from java.net import URL
def callURL(self, url): URL(url).openConnection().getInputStream()