diff options
Diffstat (limited to 'tests/HosterPluginTester.py')
-rw-r--r-- | tests/HosterPluginTester.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/HosterPluginTester.py b/tests/HosterPluginTester.py index ad71be0d2..f8a400c6d 100644 --- a/tests/HosterPluginTester.py +++ b/tests/HosterPluginTester.py @@ -37,8 +37,8 @@ class HosterPluginTester(PluginTester): @nottest def test_plugin(self, name, url, flag): # Print to stdout to see whats going on - print "%s: %s, %s" % (name, url, flag) - log(DEBUG, "%s: %s, %s", name, url, flag) + print "%s: %s, %s" % (name, url.encode("utf8"), flag) + log(DEBUG, "%s: %s, %s", name, url.encode("utf8"), flag) # url and plugin should be only important thing pyfile = PyFile(self.core, -1, url, url, 0, 0, "", name, 0, 0) |