From 8cafe70139a262712317925bceb0652d9460e2f4 Mon Sep 17 00:00:00 2001 From: Dan Mick Date: Fri, 24 Jun 2016 10:38:32 -0700 Subject: [PATCH] Come to an agreement about how to spell "committish" Signed-off-by: Dan Mick --- teuthology/suite/util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/teuthology/suite/util.py b/teuthology/suite/util.py index 145281f9eb..709a90dcc4 100644 --- a/teuthology/suite/util.py +++ b/teuthology/suite/util.py @@ -468,9 +468,9 @@ def find_git_parent(project, sha1): if not resp.ok: log.error('git refresh failed for %s: %s', project, resp.content) - def get_sha1s(project, commitish, count): + def get_sha1s(project, committish, count): url = '/'.join((base_url, '%s.git' % project, - 'history/?commitish=%s&count=%d' % (commitish, count))) + 'history/?committish=%s&count=%d' % (committish, count))) resp = requests.get(url) resp.raise_for_status() sha1s = resp.json()['sha1s'] -- 2.39.5