daca2: catch exception when generating daca2 report

This commit is contained in:
Daniel Marjamäki 2013-10-13 10:40:01 +02:00
parent a42177c2e5
commit 9aee165650
1 changed files with 4 additions and 1 deletions

View File

@ -119,4 +119,7 @@ for package in packages:
# remove all files/folders except results.txt
removeAllExceptResults()
generateDaca2Report(f.nlst(FTPPATH))
try:
generateDaca2Report(f.nlst(FTPPATH))
except socket.error:
pass