There is a little typo in get_commits() which could (or will) cause the
user some confusion. The unpatched and patched commits are reversed
because of a typo!
unpatched_commit = None
patched_commit = None
try:
- unpatched_commit = testruns.commit(args.patched)
- patched_commit = testruns.commit(args.unpatched)
+ unpatched_commit = testruns.commit(args.unpatched)
+ patched_commit = testruns.commit(args.patched)
except Exception as e:
pass
return (unpatched_commit, patched_commit)