Skip to content

Commit 07229b7

Browse files
committed
Use an empty iterable instead of None in the valid upload mime-types settings when there's no required mime type, in order to simplify other code.
- Legacy-Id: 14778
1 parent c4bb283 commit 07229b7

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ietf/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -742,7 +742,7 @@ def skip_unreadable_post(record):
742742
MEETING_VALID_UPLOAD_MIME_TYPES = {
743743
'agenda': ['text/plain', 'text/html', ],
744744
'minutes': ['text/plain', 'text/html', 'application/pdf', ],
745-
'slides': None,
745+
'slides': [],
746746
'bluesheets': ['application/pdf', 'text/plain', ],
747747
}
748748

0 commit comments

Comments
 (0)