From dc34bc0933f260ff97db24cd565cdd6b946a91a6 Mon Sep 17 00:00:00 2001
From: Mathieu Virbel <mat@kivy.org>
Date: Thu, 8 Dec 2011 12:24:35 +0100
Subject: [PATCH] fix syntax error >_<

---
 kivy/graphics/vertex_instructions.pyx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kivy/graphics/vertex_instructions.pyx b/kivy/graphics/vertex_instructions.pyx
index f83331f68..a8c6a98d8 100644
--- a/kivy/graphics/vertex_instructions.pyx
+++ b/kivy/graphics/vertex_instructions.pyx
@@ -726,7 +726,7 @@ cdef class Quad(VertexInstruction):
             if len(self._points) != 8:
                 raise GraphicException(
                     'Quad: invalid number of points (%d instead of 8' % len(
-                    self._points)))
+                    self._points))
             self.flag_update()