Skip to content
This repository has been archived by the owner on Mar 14, 2019. It is now read-only.

Commit

Permalink
Improving ENDPOINT debugging message. Wasn't really clear what it was…
Browse files Browse the repository at this point in the history
… before.
  • Loading branch information
Greg Taylor authored and patcoll committed Aug 11, 2010
1 parent 7688f92 commit 6a9e532
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion paypal/sdk/interface.py
Expand Up @@ -84,7 +84,7 @@ def call( self , method , **kwargs ):
response = Response( urllib2.urlopen(req).read() , self.config ) response = Response( urllib2.urlopen(req).read() , self.config )


if self.config.DEBUG_LEVEL >= 1 : if self.config.DEBUG_LEVEL >= 1 :
print self.config.API_ENDPOINT print " %-20s : %s" % ("ENDPOINT", self.config.API_ENDPOINT)


if not response.success: if not response.success:
if self.config.DEBUG_LEVEL >= 1 : if self.config.DEBUG_LEVEL >= 1 :
Expand Down

0 comments on commit 6a9e532

Please sign in to comment.