From 60a88dd913bfb0c4ddaa1b3cc97d791aaa173873 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Sun, 29 May 2011 20:19:29 +0200 Subject: [PATCH] doc/quickstart: add a comment to ensure people will correctly use require() with their current kivy version --- doc/sources/guide/quickstart.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/sources/guide/quickstart.rst b/doc/sources/guide/quickstart.rst index ccdefc1e1..7a650719b 100644 --- a/doc/sources/guide/quickstart.rst +++ b/doc/sources/guide/quickstart.rst @@ -17,7 +17,7 @@ The base code for creating an application looks like this: .. sourcecode:: python import kivy - kivy.require('1.0.0') + kivy.require('1.0.6') # replace with your current kivy version ! from kivy.app import App from kivy.uix.button import Button