From 2a5cd1d31e4da357c863032a1073b0c442bc4633 Mon Sep 17 00:00:00 2001 From: Axel Kohlmeyer Date: Wed, 31 Oct 2018 00:16:44 -0400 Subject: [PATCH] remove debug output --- lib/latte/Install.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/latte/Install.py b/lib/latte/Install.py index 3b211858dd..1e1f3040c2 100644 --- a/lib/latte/Install.py +++ b/lib/latte/Install.py @@ -78,7 +78,6 @@ def geturl(url,fname): if which('curl') != None: cmd = 'curl -L -o "%s" %s' % (fname,url) - print(cmd) try: subprocess.check_output(cmd,stderr=subprocess.STDOUT,shell=True) success = True @@ -87,7 +86,6 @@ def geturl(url,fname): if not success and which('wget') != None: cmd = 'wget -O "%s" %s' % (fname,url) - print(cmd) try: subprocess.check_output(cmd,stderr=subprocess.STDOUT,shell=True) success = True