From 36050224ee83a14cb4c4f7ff0b80fef804fbe86c Mon Sep 17 00:00:00 2001 From: PrivateRookie <996514515@qq.com> Date: Mon, 30 Jul 2018 21:55:29 +0800 Subject: [PATCH] remove invalid todo comment remove invalid todo comment in std_actions.py, since there is no need to implement this feature. Change-Id: I500312bb039260853a4d96a54c3395992947b9d5 Related-Bug:#1676411 --- mistral/actions/std_actions.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/mistral/actions/std_actions.py b/mistral/actions/std_actions.py index e5c0be45d..91527e5c9 100644 --- a/mistral/actions/std_actions.py +++ b/mistral/actions/std_actions.py @@ -222,11 +222,6 @@ class HTTPAction(actions.Action): resp.content ) - # TODO(akuznetsova): Need to refactor Mistral serialiser and - # deserializer to have an ability to pass needed encoding and work - # with it. Now it can process only default 'utf-8' encoding. - # Appropriate bug #1676411 was created. - # Represent important resp data as a dictionary. try: content = resp.json(encoding=resp.encoding)