Skip to content

Commit 01a99e2

Browse files
committed
Merge pull request #1536 from synsun/master
fix view all tags(F7) doesn't work on windows #1526
2 parents 7b6e13c + 7ef9879 commit 01a99e2

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

AUTHORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,3 +22,4 @@ Kevin Ormbrek
2222
Timothy Alexander
2323
@tuds
2424
@goodwillcoding
25+
@synsun

src/robotide/ui/tagdialogs.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ def _search_for_tags(self):
147147
self._unique_tags[tag_name].append(test)
148148
self._tagit[tag_name].append(tag)
149149
else:
150-
self._unique_tags.set(tag_name, [test])
150+
self._unique_tags[tag_name] = [test]
151151
self._tagit[tag_name] = [tag]
152152

153153
self.total_test_cases = len(self._test_cases)

0 commit comments

Comments
 (0)