Use print() syntax in README (#681)

Since 2.7 supports this syntax as well, this will help not to confuse new people.
This commit is contained in:
Daniel Quinn
2018-01-05 11:49:25 -08:00
committed by Jason White
parent 3726f686f9
commit c5988c3980
+1 -1
View File
@@ -32,7 +32,7 @@ g = Github("access_token")
# Then play with your Github objects:
for repo in g.get_user().get_repos():
print repo.name
print(repo.name)
```
## Documentation