From 4aaa8149305b3b79309c753bf6872367dd4a2448 Mon Sep 17 00:00:00 2001 From: Zeinab Abbasimazar Date: Mon, 18 Sep 2017 15:46:24 +0430 Subject: [PATCH] update example for change of serving multiple libraries Changes has been made to support serving a list of libraries: https://github.com/robotframework/PythonRemoteServer/issues/19 --- example/examplelibrary.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/examplelibrary.py b/example/examplelibrary.py index 8e904b0..99ba571 100755 --- a/example/examplelibrary.py +++ b/example/examplelibrary.py @@ -34,4 +34,4 @@ def strings_should_be_equal(self, str1, str2): if __name__ == '__main__': - RobotRemoteServer(ExampleLibrary(), *sys.argv[1:]) + RobotRemoteServer([ExampleLibrary()], *sys.argv[1:])