From c5988c3980753edde628f86c2a5e84e5e4c2cc33 Mon Sep 17 00:00:00 2001 From: Daniel Quinn Date: Fri, 5 Jan 2018 20:49:25 +0100 Subject: [PATCH] Use print() syntax in README (#681) Since 2.7 supports this syntax as well, this will help not to confuse new people. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 779a4713..67b4fac8 100644 --- a/README.md +++ b/README.md @@ -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