summaryrefslogtreecommitdiffstats
path: root/tests/helper/PluginTester.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/helper/PluginTester.py')
-rw-r--r--tests/helper/PluginTester.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/helper/PluginTester.py b/tests/helper/PluginTester.py
index 997a0923f..d0c1cdd3c 100644
--- a/tests/helper/PluginTester.py
+++ b/tests/helper/PluginTester.py
@@ -7,6 +7,7 @@ from logging import log, DEBUG
from time import sleep, time
from Stubs import Thread, Core, noop
+from sys import stderr
from module.plugins.Hoster import Hoster, Abort, Fail
@@ -49,4 +50,4 @@ class PluginTester(TestCase):
debug = self.thread.writeDebugReport()
log(DEBUG, debug)
# generate attachment
- print "\n[[ATTACHMENT|%s]]\n" % abspath(debug) \ No newline at end of file
+ stderr.write("\n[[ATTACHMENT|%s]]\n" % abspath(debug)) \ No newline at end of file