Skip to content

Commit

Permalink
added missing whitespace #nolog
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelgrinberg committed Jul 29, 2019
1 parent e4709df commit e54dc12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engineio/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -591,7 +591,7 @@ def _cors_allowed_origins(self, environ):
scheme=environ['wsgi.url_scheme'], host=environ['HTTP_HOST'])
if self.cors_allowed_origins is None:
allowed_origins = [default_origin] \
if default_origin is not None else[]
if default_origin is not None else []
elif self.cors_allowed_origins == '*':
allowed_origins = None
elif isinstance(self.cors_allowed_origins, six.string_types):
Expand Down

0 comments on commit e54dc12

Please sign in to comment.