fixed stupid last second typos

This commit is contained in:
Piotr Zalewa 2011-08-26 17:58:32 +01:00
Родитель bdae6b16ed
Коммит d52d9786ec
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -36,9 +36,9 @@ def get_addon_details(amo_id):
req = urllib2.Request(get_addon_amo_api_url(amo_id))
try:
page = urllib2.urlopen(req, timeout=settings.URLOPEN_TIMEOUT)
except: Exception, error:
except Exception, error:
log.critical(("AMOAPI: ERROR receiving add-on info from \"%s\""
"\n%s") % (url, str(error))
"\n%s") % (url, str(error)))
raise
amo_xml = etree.fromstring(page.read())
amo_data = {}