From 154df261f6ab5831347360d240bfa01c9a99f396 Mon Sep 17 00:00:00 2001 From: Spencer Judd Date: Sat, 14 Apr 2012 13:29:15 -0400 Subject: [PATCH] yet another late-night bug fix >.> --- cosketch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cosketch.py b/cosketch.py index daadef7..c35dccb 100644 --- a/cosketch.py +++ b/cosketch.py @@ -119,7 +119,7 @@ def stroke(self, points, color, width): points = [p for point in points for p in point] 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): self.nick = nick.replace('"','\\"')