summaryrefslogtreecommitdiffstats
path: root/deluge/maketorrent.py
diff options
context:
space:
mode:
Diffstat (limited to 'deluge/maketorrent.py')
-rw-r--r--deluge/maketorrent.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/deluge/maketorrent.py b/deluge/maketorrent.py
index c0051ca..07a2a9d 100644
--- a/deluge/maketorrent.py
+++ b/deluge/maketorrent.py
@@ -117,7 +117,7 @@ class TorrentMetadata:
files = []
padding_count = 0
# Collect a list of file paths and add padding files if necessary
- for (dirpath, dirnames, filenames) in os.walk(self.data_path):
+ for dirpath, dirnames, filenames in os.walk(self.data_path):
for index, filename in enumerate(filenames):
size = get_path_size(
os.path.join(self.data_path, dirpath, filename)