From c18ee81130bb02abe16129c044824756b7dc4b59 Mon Sep 17 00:00:00 2001 From: JonnyWong16 Date: Sun, 3 Jun 2018 12:25:15 -0700 Subject: [PATCH] Fix typo in http handler --- plexpy/http_handler.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plexpy/http_handler.py b/plexpy/http_handler.py index 7563297e..e6aaf85c 100644 --- a/plexpy/http_handler.py +++ b/plexpy/http_handler.py @@ -179,5 +179,5 @@ class HTTPHandler(object): return output except Exception as e: - logger.warn(u"Failed format response from uri %s to %s error %s" % (self.uri, self.response_type, e)) + logger.warn(u"Failed format response from uri %s to %s error %s" % (self.uri, self.output_format, e)) return None