Skip to content

Commit

Permalink
Merge pull request #1223 from plamentotev:patch-1
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 633180722
Change-Id: I7b885b0e76f89e09c4a49174d622b03d9e1753a6
  • Loading branch information
lanctot committed May 13, 2024
2 parents 9ecde1f + f92c5ae commit 6eb037e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion open_spiel/python/bots/gtp.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def gtp_cmd(self, *args):
continue # Ignore leading newlines, possibly left from prev response.
response += line
if response.startswith("="):
return response[1:].strip()
return response[1:].strip().lower()
else:
raise CommandError(response[1:].strip())

Expand Down

0 comments on commit 6eb037e

Please sign in to comment.