From aa8b258f937867a8a453b426e5c26db84a8ab879 Mon Sep 17 00:00:00 2001 From: c-bata Date: Mon, 20 May 2019 15:35:42 +0900 Subject: [PATCH] Fix typo: treatement to treatment --- gunicorn/instrument/statsd.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gunicorn/instrument/statsd.py b/gunicorn/instrument/statsd.py index 7ef0bbb6..9a537205 100644 --- a/gunicorn/instrument/statsd.py +++ b/gunicorn/instrument/statsd.py @@ -53,7 +53,7 @@ class Statsd(Logger): Logger.exception(self, msg, *args, **kwargs) self.increment("gunicorn.log.exception", 1) - # Special treatement for info, the most common log level + # Special treatment for info, the most common log level def info(self, msg, *args, **kwargs): self.log(logging.INFO, msg, *args, **kwargs)