aboutsummaryrefslogtreecommitdiff
path: root/ssh-what-repos.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2020-03-22 17:27:24 +0000
committerRob Austein <sra@hactrn.net>2020-03-22 17:27:24 +0000
commit6e7acd77707c16aa79cec22238ef944682d9184b (patch)
treedbfce74eca04e08a908631a1976194c26702d79b /ssh-what-repos.py
parent34ecad1d04c6b3add8077315bac1f954002fb7da (diff)
Python 2 -> 3
Diffstat (limited to 'ssh-what-repos.py')
-rwxr-xr-xssh-what-repos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssh-what-repos.py b/ssh-what-repos.py
index 6ecf6ed..2b81056 100755
--- a/ssh-what-repos.py
+++ b/ssh-what-repos.py
@@ -9,4 +9,4 @@ from subprocess import check_output
for repo in sorted(loads(check_output("ssh git@git.cryptech.is info -json -lc".split()))["repos"]):
if repo != "gitolite-admin" and not any(c in repo for c in "*?[]"):
- print repo
+ print(repo)