Skip to content
This repository was archived by the owner on Apr 29, 2022. It is now read-only.

Commit ccccb50

Browse files
committed
trivial changes to enable testing in CI
1 parent 0243151 commit ccccb50

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pycon/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -730,11 +730,11 @@ def CONFERENCE_SCHEDULE_ATTENDEES(schedule, forecast):
730730
# Matrix Auth API settings
731731
MATRIX_AUTH_API_DEBUG = config(
732732
'MATRIX_AUTH_API_DEBUG',
733-
default=False,
733+
default=True,
734734
cast=bool
735735
)
736736
MATRIX_AUTH_API_ALLOWED_IPS = config(
737737
'MATRIX_AUTH_API_ALLOWED_IPS',
738738
default='',
739-
cast=lambda v: [s.strip() for s in v.split(',')]
739+
cast=lambda v: [s.strip() for s in v.split(',') if s.strip()]
740740
)

0 commit comments

Comments
 (0)