diff --git a/beets/importer.py b/beets/importer.py index b190329ce..a785b23a5 100644 --- a/beets/importer.py +++ b/beets/importer.py @@ -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