daca2: skip flite, quick fix of possible hang

This commit is contained in:
Daniel Marjamäki 2013-10-19 09:53:23 +02:00
parent e3a12de057
commit c9491f952b
1 changed files with 6 additions and 0 deletions

View File

@ -90,6 +90,12 @@ def scanarchive(fullpath):
elif filename[-4:] == '.bz2':
subprocess.call(['tar', 'xjvf', filename])
if filename[:5] == 'flite':
results = open('results.txt', 'at')
results.write('fixme: this package is skipped\n')
results.close()
return
dirname = None
for s in glob.glob(filename[:2] + '*'):
if os.path.isdir(s):