Bug 1076737 - Followup to fix exception whilst notifying New Relic

This commit is contained in:
Ed Morley 2015-04-20 14:49:16 +01:00
Родитель 8039330160
Коммит 45cee6856e
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -123,5 +123,5 @@ def ping_newrelic(ctx):
request = urllib2.Request('https://rpm.newrelic.com/deployments.xml',
data, headers)
urllib2.urlopen(request)
except urllib.URLError as exp:
except urllib2.URLError as exp:
print 'Error notifying New Relic: {0}'.format(exp)