Add download info to release when available

This commit is contained in:
Ruud
2014-03-09 14:30:23 +01:00
parent dd6baa72fa
commit bef76f0118

View File

@@ -354,6 +354,13 @@ class Release(Plugin):
'info': {}
}
# Add downloader info if provided
try:
release['download_info'] = rel['download_info']
del rel['download_info']
except:
pass
try:
rls = db.get('release_identifier', rel_identifier, with_doc = True)['doc']
except: