Browse Source

Use bogus to denote empty DEBVER field to keep a consistant format.

suites/ascii
Bill Allombert 20 years ago
parent
commit
eb6d22116b
  1. 5
      popanal.py

5
popanal.py

@ -200,7 +200,10 @@ def read_submissions(stream):
e = Submission(0, header['ID'], header['TIME'])
if header.has_key('POPCONVER'):
e.release = header['POPCONVER']
if header['ARCH']=='':
e.release = 'bogus'
else:
e.release = header['POPCONVER']
if header.has_key('ARCH'):
if header['ARCH']=='x86_64':

Loading…
Cancel
Save