From 163c65241f9e02ac16fc0ebc23a07cb5beec524e Mon Sep 17 00:00:00 2001 From: George Hunt Date: Fri, 6 Dec 2019 04:31:40 +0000 Subject: [PATCH] typo formmat --- roles/captiveportal/files/capture-wsgi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/captiveportal/files/capture-wsgi.py b/roles/captiveportal/files/capture-wsgi.py index 11ca62b8f..a1e37b686 100755 --- a/roles/captiveportal/files/capture-wsgi.py +++ b/roles/captiveportal/files/capture-wsgi.py @@ -486,7 +486,7 @@ def application (environ, start_response): environ['PATH_INFO'] == "/gen_204" or\ environ['HTTP_HOST'] == "connectivitycheck.gstatic.com": current_ts, last_ts, send204after = timeout_info(ip) - logger.debug("current_ts: {} last_ts: {} send204after: {}".formmat(current_ts, last_ts, send204after,)) + logger.debug("current_ts: {} last_ts: {} send204after: {}".format(current_ts, last_ts, send204after,)) if not last_ts or (ts - int(last_ts) > INACTIVITY_TO): return android(environ, start_response) elif is_after204_timeout(ip):