From 2834441d066f3019e8ae913b2b33f9f7ea5dbc2c Mon Sep 17 00:00:00 2001 From: Adrian Moennich Date: Thu, 6 Nov 2014 15:49:44 +0100 Subject: [PATCH] Fix queue population --- livesync/indico_livesync/handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/livesync/indico_livesync/handler.py b/livesync/indico_livesync/handler.py index 605ef98..a8cb1d8 100644 --- a/livesync/indico_livesync/handler.py +++ b/livesync/indico_livesync/handler.py @@ -71,7 +71,7 @@ def connect_signals(plugin): def _moved(obj, old_parent, new_parent, **kwargs): print '_moved', obj, old_parent, new_parent - _register_change(obj, 'moved') + _register_change(obj, ChangeType.moved) category_protection = old_parent.isProtected() new_category_protection = new_parent.isProtected()