From e7b076aa44d3cc2e01625b62b1b6d2e705b90b2c Mon Sep 17 00:00:00 2001 From: jesopo Date: Fri, 22 Feb 2019 18:06:08 +0000 Subject: [PATCH] `startwith` -> `startswith` --- src/conf.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/conf.py b/src/conf.py index 514767236..5b83f2d68 100644 --- a/src/conf.py +++ b/src/conf.py @@ -258,7 +258,7 @@ class Servers(registry.SpaceSeparatedListOfStrings): (server, port) = s.rsplit(':', 1) # support for `[ipv6]:port` format - if server.startwith("[") and server.endswith("]"): + if server.startswith("[") and server.endswith("]"): server = server[1:-1] port = int(port)