Added missing comma

This commit is contained in:
John Garland 2009-05-17 02:10:45 +00:00
parent 2b70b5117d
commit 9868d7a87f

View file

@ -100,7 +100,7 @@ class TorrentInfo(object):
for f in self.__m_metadata["info"]["files"]:
self.__m_files.append({
'path': decode_string(os.path.join(prefix, decode_string(os.path.join(*f["path"]))))
'path': decode_string(os.path.join(prefix, decode_string(os.path.join(*f["path"])))),
'size': f["length"],
'download': True
})