mirror of https://github.com/CIRCL/Circlean
Python3 compat
parent
29c4e46ab4
commit
5682a49f5b
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue