summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xexts/pip.to_lorry11
1 files changed, 11 insertions, 0 deletions
diff --git a/exts/pip.to_lorry b/exts/pip.to_lorry
index 335d40a..b3a89ac 100755
--- a/exts/pip.to_lorry
+++ b/exts/pip.to_lorry
@@ -45,6 +45,17 @@ def fetch_package_metadata(package_name):
return result.json()
def find_repo_type(url):
+
+ # Don't bother with detection if we can't get a 200 OK
+ logging.debug("Getting '%s' ..." % url)
+
+ status_code = requests.get(url).status_code
+ if status_code != 200:
+ logging.debug('Got %d status code from %s, aborting repo detection'
+ % (status_code, url))
+ return None
+
+ logging.debug('200 OK for %s' % url)
logging.debug('Finding repo type for %s' % url)
vcss = [('git', 'clone'), ('hg', 'clone'),