From 5682a49f5bf434dea2d507b08c10747aa5e493ef Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rapha=C3=ABl=20Vinot?= Date: Mon, 4 May 2015 10:41:37 +0200 Subject: [PATCH] Python3 compat --- fs/opt/groomer/functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fs/opt/groomer/functions.py b/fs/opt/groomer/functions.py index a741a0b..78f00e5 100644 --- a/fs/opt/groomer/functions.py +++ b/fs/opt/groomer/functions.py @@ -198,7 +198,7 @@ class KittenGroomer(KittenGroomerBase): def application(self): ''' 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: fct() self.cur_file.log_string += 'Application file'