wrap importer match keys in list() since we need one

This commit is contained in:
Johnny Robeson 2016-06-14 00:28:00 -04:00
parent bdc0c4e2a7
commit 622945e2a9

View file

@ -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