1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 01:03:24 +00:00

fix IndexError when empty cassette throws CannotOverwriteCassetteException

This commit is contained in:
Josh Peak
2019-07-02 13:53:36 +10:00
parent 759423a75a
commit 77581437f7

View File

@@ -311,7 +311,7 @@ class Cassette(object):
best_matches.sort(key=lambda t: t[0], reverse=True)
# Get the first best matches (multiple if equal matches)
final_best_matches = []
previous_nb_success = best_matches[0][0]
previous_nb_success = 0
for best_match in best_matches:
nb_success = best_match[0]
# Do not keep matches that have 0 successes,