GateOne
GateOne copied to clipboard
Typo in example plugin example.py
https://github.com/liftoff/GateOne/blob/70e772643755ade617d14a01c12e01176fc4c0df/gateone/applications/terminal/plugins/example/example.py#L100
>>my_session="abcdefghi"
>>my_session[:3]
'abc'
>>my_session[-3:]
'ghi'
The last 3 characters should be [-3:]
user_dict['session'][:3]
returns first 3 characters