Bug 1176358 - Pass the symbols url instead of an urllib2 opener. DONTBUILD. r=bhearsum

This commit is contained in:
Armen Zambrano Gasparnian 2015-07-24 10:37:52 -04:00
Родитель 69bf340380
Коммит 3f1982d3de
1 изменённых файлов: 2 добавлений и 1 удалений

Просмотреть файл

@ -267,7 +267,8 @@ class FirefoxUIUpdates(FirefoxUITests):
try:
# Let's see if the symbols are available
return urllib2.urlopen(symbols_url)
urllib2.urlopen(symbols_path)
return symbols_path
except urllib2.HTTPError, e:
self.warning("%s - %s" % (str(e), symbols_url))