From 9868d7a87fefd5bc9006fb3359db2171f493d243 Mon Sep 17 00:00:00 2001 From: John Garland Date: Sun, 17 May 2009 02:10:45 +0000 Subject: [PATCH] Added missing comma --- deluge/ui/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 })