electronut / pp

Code for book Python Playground by Mahesh Venkitachalam (No Starch Press, USA)
564 stars 500 forks source link

TypeError: a bytes-like object is required, not 'str' in playlist.py #13

Closed c02y closed 7 years ago

c02y commented 7 years ago

My python: v3.6.1

python playlist.py --dup test-data/rating.xml

output:

...
TypeError: a bytes-like object is required, not 'str'

in findDuplicates(), changing

    f = open("dups.txt", 'wb')

to

    f = open("dups.txt", 'w')

will fix it.

electronut commented 7 years ago

Fixed, thanks.