Commit 726aca71 authored by František Stupka's avatar František Stupka
Browse files

fix: README and bug

parent d73a9e92
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -107,6 +107,9 @@ Bot 1-0 done 0 actions.
Bot 1-1 done 0 actions.
```

# Support
Application HumanBot is tested and targeted primarily on Linux Distributions. Please keep in mind that support of other OS is not ensured.

# Common errors
## Cryton not started or set properly
```
+0 −1
Original line number Diff line number Diff line
@@ -168,7 +168,6 @@ class CrytonCommunicator(Communicator):
        :return: Deque of response data or None
        """
        plan = create_plan(steps)
#        print(plan)
        plan = get_id(
            transform_response(
                api.post_request(
+0 −1
Original line number Diff line number Diff line
hello
 No newline at end of file
+4 −3
Original line number Diff line number Diff line
@@ -38,7 +38,8 @@ def after_run(data: Dict) -> str:
               f'(expected: {action_data["status"]})\n' \
               f'error message: {communicator_data["message"]}'
	
    session_id = int(communicator_data['serialized']['session_id'])
    session_id = int(communicator_data['serialized'].get('session_id', 0))
    if session_id != 0 and session_id not in bot.sessions:
    	bot.sessions[session_id] = action_data['server']

    return f'creation of session to {action_data["server"]} ' \