Python3 compat

pull/33/head
Raphaël Vinot 2015-05-04 10:41:37 +02:00
parent 29c4e46ab4
commit 5682a49f5b
1 changed files with 1 additions and 1 deletions

View File

@ -198,7 +198,7 @@ class KittenGroomer(KittenGroomerBase):
def application(self): def application(self):
''' Everything can be there, using the subtype to decide ''' ''' Everything can be there, using the subtype to decide '''
for subtype, fct in self.subtypes_application.iteritems(): for subtype, fct in list(self.subtypes_application.items()):
if subtype in self.cur_file.sub_type: if subtype in self.cur_file.sub_type:
fct() fct()
self.cur_file.log_string += 'Application file' self.cur_file.log_string += 'Application file'