Skip to content

Commit

Permalink
Resolves jeysonm82#4
Browse files Browse the repository at this point in the history
  • Loading branch information
lowlyocean committed May 4, 2020
1 parent 36162a8 commit f95672c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ir_webstats/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ def event_results(self, subsession, sessnum=0):

r = self.__req(ct.URL_GET_EVENTRESULTS % (subsession, sessnum))\
.encode('utf8')
data = [x for x in csv.reader(StringIO(r), delimiter=',',
data = [x for x in csv.reader(StringIO(r.decode('utf8')), delimiter=',',
quotechar='"')]
header_ev, header_res = data[0], data[3]
event_info = dict(list(zip(header_ev, data[1])))
Expand Down

0 comments on commit f95672c

Please sign in to comment.