From 12ccd58eae07e8fa4535a81fbb14c201e7bf9ff9 Mon Sep 17 00:00:00 2001 From: Ross Scroggs Date: Tue, 5 Jan 2016 08:54:14 -0800 Subject: [PATCH] Fix error --- src/gam.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gam.py b/src/gam.py index 1feab3ae..61c69711 100755 --- a/src/gam.py +++ b/src/gam.py @@ -8715,7 +8715,7 @@ def validateSetGAMScopes(json_data): for api, value in json_data.items(): if not isinstance(value, list): return False - GM_Globals[GM_GAMSCOPES_BY_API][api] = set(value) + GM_Globals[GM_GAMSCOPES_BY_API][api] = list(set(value)) return len(GM_Globals[GM_GAMSCOPES_BY_API]) > 0 def OAuthInfo():