diff --git a/platypush/plugins/redis.py b/platypush/plugins/redis.py index 56b987c45d..dfce8d5171 100644 --- a/platypush/plugins/redis.py +++ b/platypush/plugins/redis.py @@ -39,7 +39,7 @@ class RedisPlugin(Plugin): """ redis = Redis(*args, **kwargs) - redis.rpush(queue, msg) + redis.rpush(queue, str(msg)) @action def mget(self, keys, *args):