From 784f956e0847756c513799be5b05fe35ec97ab20 Mon Sep 17 00:00:00 2001 From: Mathieu Virbel Date: Mon, 29 Oct 2012 03:30:29 +0100 Subject: [PATCH] fix documentation --- kivy/uix/scrollview.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kivy/uix/scrollview.py b/kivy/uix/scrollview.py index c6194fb4f..3dd1da859 100644 --- a/kivy/uix/scrollview.py +++ b/kivy/uix/scrollview.py @@ -93,7 +93,8 @@ from kivy.properties import NumericProperty, BooleanProperty, AliasProperty, \ # When we are generating documentation, Config doesn't exist -_scroll_timeout = _scroll_stoptime = _scroll_distance = _scroll_friction = 0 +_scroll_moves = _scroll_timeout = _scroll_stoptime = \ + _scroll_distance = _scroll_friction = 0 if Config: _scroll_timeout = Config.getint('widgets', 'scroll_timeout') _scroll_stoptime = Config.getint('widgets', 'scroll_stoptime')