kikikyaranusa

Results 2 comments of kikikyaranusa

the question is almost 5 years old, but I hope this may help someone else ``` lines = ["%s: %s" % (v, k) -- for k, v in self.desc_map.iteritems() if...

change this line `for k, v in self.desc_map.iteritems() if k]` with `for k, v in self.desc_map.items() if k]` it works vell for me