From 17a6c4210560285445e4de539214bf2eb6d5c513 Mon Sep 17 00:00:00 2001 From: Daniel Narvaez Date: Fri, 24 May 2013 19:42:47 +0000 Subject: Handle https github urls --- 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 -- cgit v0.9.1