jenkins-bot has submitted this change and it was merged.
Change subject: Use bytes for multiprocessing manager authkey ......................................................................
Use bytes for multiprocessing manager authkey
Change-Id: I668c4b6707f457142075a3d7ca62293fe0872a0c --- M tests/ui_tests.py 1 file changed, 3 insertions(+), 1 deletion(-)
Approvals: XZise: Looks good to me, approved jenkins-bot: Verified
diff --git a/tests/ui_tests.py b/tests/ui_tests.py index 3a3388c..79fe078 100644 --- a/tests/ui_tests.py +++ b/tests/ui_tests.py @@ -116,7 +116,9 @@ pass
pywikibotManager.register(str('pywikibot'), pywikibotWrapper) - _manager = pywikibotManager(address=("127.0.0.1", 47228), authkey="4DJSchgwy5L5JxueZEWbxyeG") + _manager = pywikibotManager( + address=('127.0.0.1', 47228), + authkey=b'4DJSchgwy5L5JxueZEWbxyeG') if len(sys.argv) > 1 and sys.argv[1] == "--run-as-slave-interpreter": s = _manager.get_server() s.serve_forever()
pywikibot-commits@lists.wikimedia.org