Skip to content

Commit 4bfe927

Browse files
authored
Merge pull request #114 from saikatbasu01/master
Fix 'http'->'http_proxy' for proxy settings configuration.
2 parents 1fca98a + ee58bb2 commit 4bfe927

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

authorizenet/apicontrollersbase.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ def execute(self):
124124

125125
self.beforeexecute()
126126

127-
proxyDictionary = {'http' : utility.helper.getproperty("http"),
128-
'https' : utility.helper.getproperty("https"),
127+
proxyDictionary = {'http' : utility.helper.getproperty("http_proxy"),
128+
'https' : utility.helper.getproperty("https_proxy"),
129129
'ftp' : utility.helper.getproperty("ftp")}
130130

131131
#requests is http request

0 commit comments

Comments
 (0)