Merge branch 'fix-urllib_read' into develop

This commit is contained in:
Kim Silkebækken 2013-03-15 14:14:20 +01:00
commit 5e71f58b83
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ def urllib_read(url):
import urllib2
try:
return urllib2.urlopen(url, timeout=5).read()
except urllib2.HTTPError:
except:
return