Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/repos.py
diff options
context:
space:
mode:
Diffstat (limited to 'repos.py')
-rw-r--r--repos.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/repos.py b/repos.py
index cfe327f..1673ba6 100644
--- a/repos.py
+++ b/repos.py
@@ -20,6 +20,10 @@ def get_by_url(url):
if repo.url == url:
return repo
+ if url.startswith("git://github.com"):
+ if repo.url == url.replace("git://", "https://"):
+ return repo
+
return None