mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-17 15:48:47 +00:00
Added missing comma
This commit is contained in:
parent
2b70b5117d
commit
9868d7a87f
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ class TorrentInfo(object):
|
||||||
|
|
||||||
for f in self.__m_metadata["info"]["files"]:
|
for f in self.__m_metadata["info"]["files"]:
|
||||||
self.__m_files.append({
|
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"],
|
'size': f["length"],
|
||||||
'download': True
|
'download': True
|
||||||
})
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue