Skip to content
This repository has been archived by the owner on Nov 2, 2020. It is now read-only.

Py3 support + changes for new RBFW and SeleniumLibrary by aaltat #231

Open
wants to merge 22 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion command_helper/get_keyword.py
Original file line number Diff line number Diff line change
Expand Up @@ -164,5 +164,5 @@ def is_string(self, str_):
if version_info.major > 2:
status = isinstance(str_, str)
else:
status = isinstance(str_, str)
raise RuntimeError('Plugin only works with python 3')
idxn marked this conversation as resolved.
Show resolved Hide resolved
return status