Skip to content

Commit dfb2d93

Browse files
committed
unicode to str in streamheader
1 parent 35a2bb2 commit dfb2d93

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

wfdb/downloads.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def streamheader(recordname, pbdir):
2222
commentlines = []
2323

2424
for line in filelines:
25-
line = line.strip()
25+
line = str(line.strip())
2626
# Comment line
2727
if line.startswith('#'):
2828
commentlines.append(line)

0 commit comments

Comments
 (0)