From d104f2e1fbd8a6bfa05843e36fad2f283b0eb935 Mon Sep 17 00:00:00 2001 From: Ciaran Gultnieks Date: Thu, 15 May 2014 10:26:35 +0100 Subject: [PATCH] Support https://code.google.com in fdroid import --- fdroidserver/import.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/fdroidserver/import.py b/fdroidserver/import.py index 39da7923..b17bb4df 100644 --- a/fdroidserver/import.py +++ b/fdroidserver/import.py @@ -164,7 +164,8 @@ def main(): if not repotype: logging.info("Unable to determine vcs type. " + repo) sys.exit(1) - elif url.startswith('http://code.google.com/p/'): + elif (url.startswith('http://code.google.com/p/') or + url.startswith('https://code.google.com/p/')): if not url.endswith('/'): url += '/' projecttype = 'googlecode'