Skip to content

Commit

Permalink
Correctly return origin values (fixes GH-487)
Browse files Browse the repository at this point in the history
  • Loading branch information
dcramer committed May 11, 2012
1 parent 5815c2d commit cc9ede7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions sentry/web/forms/__init__.py
Expand Up @@ -114,6 +114,7 @@ def clean_origins(self):
values = filter(bool, (v.strip() for v in value.split('\n')))
for value in values:
self._url_validator(value)
return values


class EditProjectAdminForm(EditProjectForm):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -64,7 +64,7 @@

setup(
name='sentry',
version='4.2.2',
version='4.2.4',
author='David Cramer',
author_email='dcramer@gmail.com',
url='http://github.com/dcramer/sentry',
Expand Down

0 comments on commit cc9ede7

Please sign in to comment.