Skip to content

Commit

Permalink
Merge pull request #4 from rbw0/branch-0.2.6
Browse files Browse the repository at this point in the history
Branch 0.2.6
  • Loading branch information
rbw authored Mar 17, 2018
2 parents 12f0c1d + 5dca426 commit 2b748f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/oauth_api_server/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def inner(*args, **kwargs):
client = ps.connection['client']

if session['token'] and hasattr(client, 'token') and client.token is None:
ps.set_token(session['token'])
client.set_token(session['token'])

try:
return f(*args, **kwargs)
Expand Down
4 changes: 2 additions & 2 deletions flask_snow/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"""

__author__ = "Robert Wikman <[email protected]>"
__version__ = "0.2.5"
__version__ = "0.2.6"

import warnings

Expand Down Expand Up @@ -183,4 +183,4 @@ def connection(self):
'resources': {}
}

return ctx.snow
return ctx.snow

0 comments on commit 2b748f2

Please sign in to comment.