summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Garland <johnnyg@gmail.com>2009-05-17 02:10:45 +0000
committerJohn Garland <johnnyg@gmail.com>2009-05-17 02:10:45 +0000
commit9868d7a87fefd5bc9006fb3359db2171f493d243 (patch)
tree70ec6c79870263ab5753287dad1e1ded5e633232
parent2b70b5117de21abc702df7b34fd1731c4e5ea657 (diff)
downloaddeluge-9868d7a87fefd5bc9006fb3359db2171f493d243.tar.gz
deluge-9868d7a87fefd5bc9006fb3359db2171f493d243.tar.bz2
deluge-9868d7a87fefd5bc9006fb3359db2171f493d243.zip
Added missing comma
-rw-r--r--deluge/ui/common.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/ui/common.py b/deluge/ui/common.py
index fbc75f3d0..c42dd862a 100644
--- a/deluge/ui/common.py
+++ b/deluge/ui/common.py
@@ -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
})