From 2b2ebe1b6bf1d49cbeaf5e1757ef202a3407776c Mon Sep 17 00:00:00 2001 From: Derek Willian Stavis Date: Wed, 2 Jul 2014 15:23:48 -0300 Subject: [PATCH] Fix typo in switch_to documentation `switch()` method doesn't exists. seems like it was a typo. --- kivy/uix/screenmanager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kivy/uix/screenmanager.py b/kivy/uix/screenmanager.py index 12a2f0296..445c81aaf 100644 --- a/kivy/uix/screenmanager.py +++ b/kivy/uix/screenmanager.py @@ -936,7 +936,7 @@ class ScreenManager(FloatLayout): If any animation is in progress, it will be stopped and replaced by this one: you should avoid this because the animation will just look - weird. Use either :meth:`switch` or :attr:`current` but not both. + weird. Use either :meth:`switch_to` or :attr:`current` but not both. The `screen` name will be changed if there is any conflict with the current screen.