From 7fd3daa5249f1fbc2ce34d2557e13d1b6a9080c2 Mon Sep 17 00:00:00 2001 From: Ian Fillion-de Kiewit Date: Mon, 8 Feb 2016 10:14:07 -0500 Subject: [PATCH] Fix python 3.3 tests --- moto/swf/responses.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/moto/swf/responses.py b/moto/swf/responses.py index afa9f1903..9be4873fd 100644 --- a/moto/swf/responses.py +++ b/moto/swf/responses.py @@ -46,7 +46,7 @@ class SWFResponse(BaseResponse): raise SWFSerializationException(parameter) def _check_exclusivity(self, **kwargs): - if kwargs.values().count(None) >= len(kwargs) - 1: + if list(kwargs.values()).count(None) >= len(kwargs) - 1: return keys = kwargs.keys() if len(keys) == 2: