Fix typo in log message

Change-Id: Ie8b788b0c783e9c9b278f6a64ca9004a1348ce93
This commit is contained in:
Flavio Percoco
2019-05-13 16:00:43 -04:00
parent 785eb742b1
commit 9ca3a298fe

View File

@@ -1111,7 +1111,7 @@ class GithubConnection(BaseConnection):
"Rate limit exceeded, using empty branch list")
return []
elif resp.status_code == 404:
raise Exception("Got status code 404 when lising branches "
raise Exception("Got status code 404 when listing branches "
"of project %s" % project.name)
branches.extend([x['name'] for x in resp.json()])