Skip to content

Commit 9d8737d

Browse files
committed
fix string/bytes join (closes #110)
1 parent bf48ceb commit 9d8737d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pyrocore/scripts/lstor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ def splitter(fields):
119119
else:
120120
values.append("%s" % val)
121121
else:
122-
listing = '\t'.join(values)
122+
listing = '\t'.join(fmt.to_utf8(x) for x in values)
123123
else:
124124
listing = '\n'.join(torrent.listing(masked=not self.options.reveal))
125125
except (ValueError, KeyError, bencode.BencodeError) as exc:

0 commit comments

Comments
 (0)