Skip to content

Commit e5d7cef

Browse files
committed
Merge pull request #1514 from robotframework/issue/1496/fix-find-where-used
Fix `Find Where Used`
2 parents ddcbd71 + 0de2624 commit e5d7cef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/robotide/editor/kweditor.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ def _execute_find_where_used(self, is_variable, searchstring):
620620
self._tree.highlight, searchstring).show()
621621

622622
def _cell_value_contains_multiple_search_items(self, value):
623-
variables = utils.find_variable_basenames(value)
623+
variables = variablematcher.find_variable_basenames(value)
624624
return variables and variables[0] != value
625625

626626
def _extract_scalar(self, cell):

0 commit comments

Comments
 (0)