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:
parent
97a5ed1f6c
commit
42b1a41227
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue