fix scoring parser
This commit is contained in:
parent
89a7dcd5f2
commit
c6cf6db756
1 changed files with 1 additions and 1 deletions
|
@ -150,7 +150,7 @@ Press Play! to play against GNU Go or invite a second player.
|
|||
vertices = ret.replace('\n', ' ').split(' ')
|
||||
for vertex in vertices:
|
||||
vertex = vertex.strip()
|
||||
if len(vertex) < 2, 3:
|
||||
if len(vertex) < 2:
|
||||
continue
|
||||
x = vertex[0]
|
||||
y = vertex[1:]
|
||||
|
|
Loading…
Reference in a new issue