From e58a7cf82fe31cc6e9f2bf3516dcd7f19c01e493 Mon Sep 17 00:00:00 2001 From: Georg Schelkshorn Date: Mon, 24 Sep 2012 22:45:08 +0300 Subject: [PATCH] Fixed URI Bug --- docs/source/android.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/android.rst b/docs/source/android.rst index 262a510..c5db217 100644 --- a/docs/source/android.rst +++ b/docs/source/android.rst @@ -103,7 +103,7 @@ Let's see an example that demonstrate the `Intent.ACTION_VIEW`:: # create the intent intent = Intent() intent.setAction(Intent.ACTION_VIEW) - intent.setData(Uri('http://kivy.org')) + intent.setData(Uri.parse('http://kivy.org')) # PythonActivity.mActivity is the instance of the current Activity # BUT, startActivity is a method from the Activity class, not our