settings: Remove now-unnecessary EMAIL_DELIVERER_DISABLED setting.

This commit is contained in:
Alex Vandiver
2021-05-17 16:14:53 -07:00
committed by Tim Abbott
parent 1e67e0f218
commit 670c7e7ba4
4 changed files with 2 additions and 36 deletions

View File

@@ -1,5 +1,4 @@
# Library code for use in management commands
import signal
from argparse import ArgumentParser, RawTextHelpFormatter
from typing import Any, Dict, List, Optional
@@ -31,11 +30,6 @@ def check_config() -> None:
raise CommandError(f"Error: You must set {setting_name} in /etc/zulip/settings.py.")
def sleep_forever() -> None:
while True: # nocoverage
signal.pause()
class ZulipBaseCommand(BaseCommand):
# Fix support for multi-line usage