Ansgar pushed to branch master at Debian FTP Team / dak
Commits:
-
e839612c
by Ansgar Burchardt at 2019-09-03T20:05:24Z
1 changed file:
Changes:
... | ... | @@ -421,7 +421,7 @@ class BinaryCheck(Check): |
421 | 421 |
|
422 | 422 |
for field in ('Package', 'Architecture', 'Version', 'Description', 'Section'):
|
423 | 423 |
if field not in control:
|
424 |
- raise Reject('{0}: Missing mandatory field {0}.'.format(fn, field))
|
|
424 |
+ raise Reject('{0}: Missing mandatory field {1}.'.format(fn, field))
|
|
425 | 425 |
|
426 | 426 |
check_fields_for_valid_utf8(fn, control)
|
427 | 427 |
|