Merge pull request #31 from GeorgS/patch-1

Fixed URI Bug ( uri.parse )
This commit is contained in:
Gabriel Pettier 2012-09-24 12:52:17 -07:00
commit 528120c550
1 changed files with 1 additions and 1 deletions

View File

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