From ab4eaccd99d8d4d58644ec11c652c266ee0d017c Mon Sep 17 00:00:00 2001 From: dessant Date: Thu, 10 Mar 2016 05:09:37 +0200 Subject: [PATCH] add missing pathsep, fix #4075 --- kivy/app.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kivy/app.py b/kivy/app.py index 60168fc19..30cc799e7 100644 --- a/kivy/app.py +++ b/kivy/app.py @@ -752,14 +752,14 @@ class App(EventDispatcher): This function implements these conventions. The directory is created when the property is called, unless it already exists. - On iOS, `~/Documents` is returned (which is inside the + On iOS, `~/Documents/` is returned (which is inside the app's sandbox). On Android, `/sdcard/` is returned. On Windows, `%APPDATA%/` is returned. - On Mac OSX, `~/Library/Application Support/` is returned. + On OS X, `~/Library/Application Support/` is returned. On Linux, `$XDG_CONFIG_HOME/` is returned. '''