Skip to content

Commit

Permalink
Fix typos in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
gilles-duboscq committed Feb 24, 2016
1 parent c58d94c commit d3e8d79
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mx.py
Original file line number Diff line number Diff line change
Expand Up @@ -3974,7 +3974,7 @@ def getSnapshot(self, groupId, artifactId, version):
except urllib2.URLError as e:
if isinstance(e, urllib2.HTTPError) and e.code == 404:
return None
abort('Error while retreiving snappshot for {}:{}:{}: {}'.format(groupId, artifactId, version, str(e)))
abort('Error while retrieving snapshot for {}:{}:{}: {}'.format(groupId, artifactId, version, str(e)))
try:
tree = etreeParse(metadataFile)
root = tree.getroot()
Expand Down

0 comments on commit d3e8d79

Please sign in to comment.