aboutsummaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-06-14 17:31:00 +0000
committerHans-Christoph Steiner <eighthave@users.sourceforge.net>2010-06-14 17:31:00 +0000
commitd2c38ad068b2cc0d6b65846ae59e9a8614c4d453 (patch)
treedc9bed7799a2c20d729e9fcc536387dddc21ec1e /scripts
parentb3c805deab9842ea6f69d4168fe8606e8ddf70d8 (diff)
removing debug messages that are not in the log file
svn path=/trunk/; revision=13653
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/load_every_help.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/scripts/load_every_help.py b/scripts/load_every_help.py
index 722a94af..2b307f16 100755
--- a/scripts/load_every_help.py
+++ b/scripts/load_every_help.py
@@ -48,9 +48,7 @@ def send_to_socket(message):
print "socket timed out while sending"
def send_to_pd(message):
- print 'Sending to pd: ' + message
send_to_socket('; pd ' + message + ';\n')
- print 'finished sending'
def open_patch(filename):
dir, file = os.path.split(filename)
@@ -75,7 +73,6 @@ def quit_pd(process):
send_to_pd('quit')
time.sleep(1)
try:
- print 'Trying to kill pd'
os.kill(process.pid, signal.SIGTERM)
except OSError:
print 'OSError on SIGTERM'
@@ -134,14 +131,12 @@ for root, dirs, files in os.walk(docdir):
if m:
patchoutput = []
patch = os.path.join(root, m.string)
- print 'checking ' + patch
p = launch_pd()
try:
open_patch(patch)
time.sleep(5)
close_patch(patch)
quit_pd(p)
- print 'Finished ' + patch + '\n\n'
except socket.error:
patchoutput.append('socket.error')
while True: