diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-09 05:37:41 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2011-10-09 05:37:41 +0000 |
commit | f201297df4f188314ed3ffc73b52af78da11fc27 (patch) | |
tree | 914b8079e87f924cf79844785ac4127566941a2c | |
parent | 09754afa70de4fb7957915d13f245747dea6b38d (diff) |
removed debug print/write and set file to utf-8
svn path=/trunk/; revision=15553
-rwxr-xr-x | scripts/load_every_help.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/load_every_help.py b/scripts/load_every_help.py index d53526e5..eb5b00bb 100755 --- a/scripts/load_every_help.py +++ b/scripts/load_every_help.py @@ -1,4 +1,5 @@ #!/usr/bin/python +# -*- coding: utf-8 -*- import subprocess, sys, socket, time, os, re, time, smtplib, signal import random @@ -145,7 +146,6 @@ class PdTest(): m = re.search('EOF on socket', line) if not m and line: patchoutput.append(line) - log.write(line) else: break patchoutput = self.remove_ignorelines(patchoutput) @@ -182,7 +182,6 @@ for root, dirs, files in os.walk(extradir): for name in files: m = re.search(".*-help\.pd$", name) if m: - print('runtest: ' + name) test.runtest(fd, root, name) docdir = os.path.join(pdrootdir, 'doc') |