Commit ad6ed70
committed
Fix exception introduced in d765211
```
File "picard/ui/metadatabox/edittagdialog.py", line 222, in _get_supported_tags
tags = sorted(list(tag_names()) + self.metadata_box.tag_diff.tag_names)
~~~~~~~~~~~~~~~~~~^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
TypeError: unsupported operand type(s) for +: 'set' and 'list'
```
This issue was introduced in commit d765211, it should have been `list()` instead of `set()`, tag names are already unique, but `tag_names()` is a generator.1 parent bfb0020 commit ad6ed70
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
219 | 219 | | |
220 | 220 | | |
221 | 221 | | |
222 | | - | |
| 222 | + | |
223 | 223 | | |
224 | 224 | | |
225 | 225 | | |
| |||
0 commit comments