Skip to content

Commit

Permalink
Bump to version = 1.1.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
afabiani committed Aug 16, 2019
1 parent 69c0c2f commit 47402b7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions oauth2_provider/validators.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ class URIValidator(URLValidator):

class RedirectURIValidator(URIValidator):
def __init__(self, allowed_schemes, allow_fragments=False):
super().__init__(schemes=allowed_schemes)
super(RedirectURIValidator, self).__init__(schemes=allowed_schemes)
self.allow_fragments = allow_fragments

def __call__(self, value):
super().__call__(value)
super(RedirectURIValidator, self).__call__(value)
value = force_text(value)
scheme, netloc, path, query, fragment = urlsplit(value)
if fragment and not self.allow_fragments:
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = geonode-oauth-toolkit
version = 1.1.4.2
version = 1.1.4.3
description = OAuth2 Provider for Django/GeoNode
author = Federico Frenguelli, Massimiliano Pippi, Alessio Fabiani
author_email = synasius@gmail.com
Expand Down

0 comments on commit 47402b7

Please sign in to comment.