mirror of
https://github.com/beetbox/beets.git
synced 2025-12-29 03:52:51 +01:00
wrap importer match keys in list() since we need one
This commit is contained in:
parent
bdc0c4e2a7
commit
622945e2a9
1 changed files with 1 additions and 1 deletions
|
|
@ -499,7 +499,7 @@ class ImportTask(BaseImportTask):
|
|||
if self.choice_flag in (action.ASIS, action.RETAG):
|
||||
return list(self.items)
|
||||
elif self.choice_flag == action.APPLY:
|
||||
return self.match.mapping.keys()
|
||||
return list(self.match.mapping.keys())
|
||||
else:
|
||||
assert False
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue