From 72745e04e194af6f3e1e608bad6fcae028a94c5d Mon Sep 17 00:00:00 2001 From: Tomas Babej Date: Sun, 15 Mar 2015 17:13:29 +0100 Subject: [PATCH] TaskFilter: Fix typo when normalizing input --- tasklib/task.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasklib/task.py b/tasklib/task.py index 0283f6f..8a2ea7a 100644 --- a/tasklib/task.py +++ b/tasklib/task.py @@ -704,7 +704,7 @@ class TaskFilter(SerializingObject): attribute_key = key.split('.')[0] # Since this is user input, we need to normalize before we serialize - value = self._normalize(key, value) + value = self._normalize(attribute_key, value) value = self._serialize(attribute_key, value) # If we are filtering by uuid:, do not use uuid keyword -- 2.39.2