Joerg Jaspert pushed to branch master at Debian FTP Team / dak
Commits:
-
5d4721ff
by Emilio Pozuelo Monfort at 2018-10-23T18:34:53Z
-
360853bd
by Joerg Jaspert at 2018-10-23T18:35:36Z
1 changed file:
Changes:
... | ... | @@ -498,6 +498,9 @@ def process_changes(changes_filenames): |
498 | 498 |
try:
|
499 | 499 |
directory, filename = os.path.split(fn)
|
500 | 500 |
c = daklib.upload.Changes(directory, filename, keyring_files)
|
501 |
+ # Force parsing the .changes so we can catch InvalidChangesException now
|
|
502 |
+ #pylint: disable=pointless-statement
|
|
503 |
+ c.byhand_files
|
|
501 | 504 |
changes.append([directory, c])
|
502 | 505 |
except Exception as e:
|
503 | 506 |
Logger.log([filename, "Error while loading changes: {0}".format(e)])
|