Skip to content

Commit

Permalink
add parentheses around print() in README
Browse files Browse the repository at this point in the history
no reason to commit a python2-ism right there on the front page
  • Loading branch information
glyph committed Jun 26, 2018
1 parent ce89a5f commit 04e3ce0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.rst
Expand Up @@ -39,7 +39,7 @@ Quick Usage Example
o = ldapsyntax.LDAPEntry(client, basedn)
results = yield o.search(filterText=query)
for entry in results:
print entry
print(entry)
if __name__ == '__main__':
df = example()
Expand Down

0 comments on commit 04e3ce0

Please sign in to comment.