Skip to content

Commit

Permalink
yet another late-night bug fix >.>
Browse files Browse the repository at this point in the history
  • Loading branch information
scjudd committed Apr 14, 2012
1 parent efdc352 commit 154df26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cosketch.py
Expand Up @@ -119,7 +119,7 @@ def stroke(self, points, color, width):
points = [p for point in points for p in point] points = [p for point in points for p in point]


data = self.d('["Stroke",0,"%s",%s,%s,255]' % (color,width,points)) data = self.d('["Stroke",0,"%s",%s,%s,255]' % (color,width,points))
self.action_queue.append(data) self.action_queue.put(data)


def set_nick(self, nick): def set_nick(self, nick):
self.nick = nick.replace('"','\\"') self.nick = nick.replace('"','\\"')
Expand Down

0 comments on commit 154df26

Please sign in to comment.