From b7e664c4720a621047661893053eb4339b797878 Mon Sep 17 00:00:00 2001 From: kohleman <kohleman> Date: Wed, 11 Jan 2012 13:58:19 +0000 Subject: [PATCH] removed print statement for debugging SVN: 24148 --- openbis_all/source/python/gather_postgres_stats.py | 1 - 1 file changed, 1 deletion(-) diff --git a/openbis_all/source/python/gather_postgres_stats.py b/openbis_all/source/python/gather_postgres_stats.py index 5862733e36b..4afd1fff499 100755 --- a/openbis_all/source/python/gather_postgres_stats.py +++ b/openbis_all/source/python/gather_postgres_stats.py @@ -144,7 +144,6 @@ def callCommandLine(args): Calls a command line program and returns the standard out ''' SplitArgs = shlex.split(args) - print(args) p = subprocess.Popen(SplitArgs, stdout = subprocess.PIPE, stderr = subprocess.PIPE) out, err = p.communicate() return out -- GitLab