From 6e7acd77707c16aa79cec22238ef944682d9184b Mon Sep 17 00:00:00 2001 From: Rob Austein Date: Sun, 22 Mar 2020 17:27:24 +0000 Subject: Python 2 -> 3 --- what-remotes.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'what-remotes.py') diff --git a/what-remotes.py b/what-remotes.py index 0359301..0c36467 100755 --- a/what-remotes.py +++ b/what-remotes.py @@ -9,6 +9,6 @@ from sys import argv for root in argv[1:] or listdir("."): for head, dirs, files in walk(root): if ".git" in dirs and not head.endswith("/gitolite"): - print head + print(head) for line in check_output(("git", "remote", "-v"), cwd = head).splitlines(): - print " ", line + print(" ", line) -- cgit v1.2.3