Comment 1 for bug 1217513

Revision history for this message
Matt Jones (workhorsy) wrote :

This is because in Python 3 getting the keys() of a Dict returns a dict_keys object instead of a list. Change this:

targets.keys()

to this:

list(targets.keys())