Trivial refactoring

This commit is contained in:
Miroslav Stampar
2020-08-13 16:22:09 +02:00
parent b3f4c6d0fc
commit a42ec7d9cb
4 changed files with 4 additions and 4 deletions

View File

@@ -1131,7 +1131,7 @@ class Connect(object):
uri = _adjustParameter(uri, token.name, token.value)
elif candidate == PLACE.GET and get:
get = _adjustParameter(get, token.name, token.value)
elif candidate in [PLACE.POST, PLACE.CUSTOM_POST] and post:
elif candidate in (PLACE.POST, PLACE.CUSTOM_POST) and post:
post = _adjustParameter(post, token.name, token.value)
for i in xrange(len(conf.httpHeaders)):