From a8aecaa03631a8a8343b00d8b3493c28da23f01a Mon Sep 17 00:00:00 2001 From: Miroslav Stampar Date: Tue, 2 Oct 2012 13:33:10 +0200 Subject: [PATCH] Minor style update --- lib/request/connect.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/request/connect.py b/lib/request/connect.py index cf85dd165..485efa8e3 100644 --- a/lib/request/connect.py +++ b/lib/request/connect.py @@ -676,7 +676,7 @@ class Connect: if post: if conf.skipUrlEncode is None: _ = (post or "").strip() - if _.startswith("<") and _.endswith(">"): + if _.startswith('<') and _.endswith('>'): msg = "provided POST data looks " msg += "like it's in XML format. " msg += "Do you want to turn off URL encoding "