Fix missing parenthesis

This commit is contained in:
Sean Callan 2015-12-12 14:14:20 -08:00
parent a313ce0b5f
commit 80d715e424
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ defmodule Ueberauth.Strategy.Twitter do
Includes the credentials from the twitter response.
"""
def credentials(conn) do
{token, _secret} = get_session(conn, :twitter_token
{token, _secret} = get_session(conn, :twitter_token)
%Credentials{token: token}
end