Skip to content

Commit

Permalink
Merge pull request #408 from nikolas/patch-4
Browse files Browse the repository at this point in the history
Use python3-compatible syntax for "print" in docs/index
  • Loading branch information
andrewsmedina committed Jun 4, 2015
2 parents e47f044 + 676be2c commit e869d05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ Sample code
# Interact with elements
button.click()
if browser.is_text_present('splinter.readthedocs.org'):
print "Yes, the official website was found!"
print("Yes, the official website was found!")
else:
print "No, it wasn't found... We need to improve our SEO techniques"
print("No, it wasn't found... We need to improve our SEO techniques")

Features
--------
Expand Down

0 comments on commit e869d05

Please sign in to comment.