From 9f85209a1b73eb6bb4ed658a3a67712c56b3dffd Mon Sep 17 00:00:00 2001 From: "Brian E. Granger" Date: Thu, 18 Jan 2018 12:31:17 -0800 Subject: [PATCH] Remove unicode character in favor of plain -> This is still causing problems in all fresh deployments we are doing. I am fine with another solution, but at least wanted to proposed this as a fix for now. --- jupyterhub/log.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jupyterhub/log.py b/jupyterhub/log.py index 2405edf3..3520d26d 100644 --- a/jupyterhub/log.py +++ b/jupyterhub/log.py @@ -120,6 +120,6 @@ def log_request(handler): # to get headers from tornado location = handler._headers.get('Location') if location: - ns['location'] = ' → {}'.format(location) + ns['location'] = ' -> {}'.format(location) log_method(msg.format(**ns)) prometheus_log_method(handler)