diff options
author | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-13 23:42:10 +0100 |
---|---|---|
committer | RaNaN <Mast3rRaNaN@hotmail.de> | 2012-01-13 23:42:10 +0100 |
commit | 069503da5106fd2fcf7fa2d3a8462ab109b44adb (patch) | |
tree | 98a047626e68602e5c5da283012f91b6c5b76a91 /tests/helper/PluginTester.py | |
parent | plugin unit test, closed #499, #500 (diff) | |
download | pyload-069503da5106fd2fcf7fa2d3a8462ab109b44adb.tar.xz |
cosmetic fixes
Diffstat (limited to 'tests/helper/PluginTester.py')
-rw-r--r-- | tests/helper/PluginTester.py | 3 |
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 |