summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xbaserockimport/exts/python.to_lorry5
1 files changed, 4 insertions, 1 deletions
diff --git a/baserockimport/exts/python.to_lorry b/baserockimport/exts/python.to_lorry
index 3f0a463..1452be8 100755
--- a/baserockimport/exts/python.to_lorry
+++ b/baserockimport/exts/python.to_lorry
@@ -47,6 +47,8 @@ def fetch_package_metadata(package_name):
def find_repo_type(url):
+ debug_vcss = False
+
# Don't bother with detection if we can't get a 200 OK
logging.debug("Getting '%s' ..." % url)
@@ -79,7 +81,8 @@ def find_repo_type(url):
if line == '':
break
- logging.debug(line.rstrip('\n'))
+ if debug_vcss:
+ logging.debug(line.rstrip('\n'))
p.wait() # even with eof on both streams, we still wait