Skip to content

Commit

Permalink
missing quote in py example
Browse files Browse the repository at this point in the history
Fixes Issue SeleniumHQ#6423
  • Loading branch information
lukeis committed Oct 18, 2013
1 parent d3c5e01 commit 8471693
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion py/README
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Example 1:

browser = webdriver.Firefox()

browser.get('http://www.yahoo.com)
browser.get('http://www.yahoo.com')
assert 'Yahoo!' in browser.title

elem = browser.find_element_by_name('p') # Find the search box
Expand Down
2 changes: 1 addition & 1 deletion py/docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ Example 1:

browser = webdriver.Firefox()
browser.get('http://www.yahoo.com)
browser.get('http://www.yahoo.com')
assert 'Yahoo!' in browser.title

elem = browser.find_element_by_name('p') # Find the search box
Expand Down

0 comments on commit 8471693

Please sign in to comment.