diff --git a/platypush/plugins/redis.py b/platypush/plugins/redis.py index 56b987c4..dfce8d51 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):