Fix exported symbol in identity.v3

A , was missing so the strings were just concatenated in __all__.
This caused the TokenMethod and OidcAuthorizationCode symbols to not
be exported.

Change-Id: I692501849f9f7854383be95cea02e84f7a2a99d4
This commit is contained in:
Brant Knudson 2016-03-01 13:28:50 -06:00
parent 2e951b7670
commit f83cee1c61

View File

@ -31,7 +31,7 @@ __all__ = ('Auth',
'PasswordMethod',
'Token',
'TokenMethod'
'TokenMethod',
'OidcAuthorizationCode',
'OidcPassword')
'OidcPassword',)