diff --git a/zerver/lib/actions.py b/zerver/lib/actions.py index 5b298ec724..8d1c82e816 100644 --- a/zerver/lib/actions.py +++ b/zerver/lib/actions.py @@ -2421,8 +2421,8 @@ def set_default_streams(realm, stream_dict): stream_names.append(name) stream, _ = create_stream_if_needed(realm, name, - invite_only = options["invite_only"], - stream_description = options["description"]) + invite_only = options.get("invite_only", False), + stream_description = options.get("description", '')) DefaultStream.objects.create(stream=stream, realm=realm) # Always include the realm's default notifications streams, if it exists