Skip to content
Snippets Groups Projects
Commit 1d7e374e authored by dkg's avatar dkg
Browse files

office: try all members, even when one fails

the end result will be the same -- an abort -- but the user will get
to see all the warnings for a particular file, instead of getting them
one at a time.
parent 915dc634
No related branches found
No related tags found
No related merge requests found
......@@ -98,11 +98,10 @@ class ArchiveBasedAbstractParser(abstract.AbstractParser):
full_path = os.path.join(temp_folder, item.filename)
if self._specific_cleanup(full_path) is False:
shutil.rmtree(temp_folder)
os.remove(self.output_filename)
logging.warning("Something went wrong during deep cleaning of %s",
item.filename)
return False
abort = True
continue
if item.filename in self.files_to_keep:
# those files aren't supported, but we want to add them anyway
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment