Change loose to lose where appropriate

This commit is contained in:
Jerry Aldrich 2018-10-27 11:59:03 -07:00
parent 8504d89890
commit 4681025ef5
2 changed files with 2 additions and 2 deletions

View file

@ -421,7 +421,7 @@ class IRCBotFactory(protocol.ReconnectingClientFactory):
def clientConnectionLost(self, connector, reason):
"""
Called when Client looses connection.
Called when Client loses connection.
Args:
connector (Connection): Represents the connection.

View file

@ -138,7 +138,7 @@ HTTP_LOG_FILE = os.path.join(LOG_DIR, 'http_requests.log')
LOCKWARNING_LOG_FILE = os.path.join(LOG_DIR, 'lockwarnings.log')
# Rotate log files when server and/or portal stops. This will keep log
# file sizes down. Turn off to get ever growing log files and never
# loose log info.
# lose log info.
CYCLE_LOGFILES = True
# Number of lines to append to rotating channel logs when they rotate
CHANNEL_LOG_NUM_TAIL_LINES = 20