doc/quickstart: add a comment to ensure people will correctly use require() with their current kivy version

This commit is contained in:
Mathieu Virbel 2011-05-29 20:19:29 +02:00
parent df92193f38
commit 60a88dd913
1 changed files with 1 additions and 1 deletions

View File

@ -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