From db0e0b62fb2239f307c8ee5c0c67fabe5d8f21c4 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Sat, 4 Sep 2021 08:06:24 +1000 Subject: [PATCH] docs: fix simple typo, parms -> params There is a small typo in linode/VEpycurl.py. Should read `params` rather than `parms`. --- linode/VEpycurl.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linode/VEpycurl.py b/linode/VEpycurl.py index dfc1fd9..7e35ccf 100644 --- a/linode/VEpycurl.py +++ b/linode/VEpycurl.py @@ -74,7 +74,7 @@ def __init__(self, self.pco.setopt(pycurl.COOKIEFILE, cjf.name) self.pco.setopt(pycurl.COOKIEJAR, cjf.name) if useSOCKS : - # if you wish to use SOCKS, it is configured through these parms + # if you wish to use SOCKS, it is configured through these params self.pco.setopt(pycurl.PROXY, proxy) self.pco.setopt(pycurl.PROXYPORT, proxyPort) self.pco.setopt(pycurl.PROXYTYPE, proxyType)