Skip to content

Commit

Permalink
Merge pull request #76 from markstar/master
Browse files Browse the repository at this point in the history
Fixed issue #74 (string replace is no longer required)
  • Loading branch information
XanderRiga authored Feb 19, 2021
2 parents 5305895 + 4bf0771 commit 2f910bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyracing/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ async def driver_stats(
the main /DriverLookup page on iRacing.
"""
payload = {
'search': str(search).replace(' ', '+'),
'search': search,
'friend': friend,
'watched': watched,
'recent': recent,
Expand Down

0 comments on commit 2f910bf

Please sign in to comment.