Added the new format '4' to the list of recognized formats in the coverage_changes management command.

- Legacy-Id: 13766
This commit is contained in:
Henrik Levkowetz 2017-07-03 21:18:46 +00:00
parent 97a5ed1f6c
commit 42b1a41227

View file

@ -106,6 +106,8 @@ class Command(BaseCommand):
mlines, mcov = None, mcoverage[mkey]
elif mformat == 2:
mlines, mcov = mcoverage[mkey]
elif mformat == 4:
mlines, mcov = mcoverage[mkey]
else:
raise CommandError("The release coverage data has an unknown format ('%s'), quitting." % mformat)
if lformat == 1: