aboutsummaryrefslogtreecommitdiff
path: root/https-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 /https-what-repos.py
parent34ecad1d04c6b3add8077315bac1f954002fb7da (diff)
Python 2 -> 3
Diffstat (limited to 'https-what-repos.py')
-rwxr-xr-xhttps-what-repos.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/https-what-repos.py b/https-what-repos.py
index eec3e39..9237f76 100755
--- a/https-what-repos.py
+++ b/https-what-repos.py
@@ -11,4 +11,4 @@ url = "https://wiki.cryptech.is/wiki/GitRepositories"
for x in ElementTree(file = urlopen(url)).iter("{http://www.w3.org/1999/xhtml}code"):
if x.text.startswith("https://git.cryptech.is/") and x.text.endswith(".git"):
- print x.text
+ print(x.text)