GateOne icon indicating copy to clipboard operation
GateOne copied to clipboard

Typo in example plugin example.py

Open w84miracle opened this issue 6 years ago • 0 comments

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

w84miracle avatar Mar 08 '18 02:03 w84miracle