Skip to content

Commit b36c153

Browse files
committed
debug
1 parent dcd8e2f commit b36c153

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

paypal/util.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@ def getAuthHeader(apiUser, apiPass, accessTok, secTok, httpMethod, scriptURI):
4141
oauthVer="1.0"
4242
oauthSigMethod="HMAC-SHA1"
4343
timeStamp=int(time.time())
44-
timeStamp = int('1361464580')
4544

4645
# used to sign the signature base below to build the final signature
4746
key=apiPass
@@ -60,9 +59,6 @@ def getAuthHeader(apiUser, apiPass, accessTok, secTok, httpMethod, scriptURI):
6059
# encode and append
6160
sigBase=getAppendedStr(sigBase, getEncodedString(sigParm))
6261

63-
print 'SIG BASE: ', sigBase
64-
print 'KEY: ',key
6562
sigFinal=getSignature(key, sigBase)
66-
print 'SIG: ', sigFinal
6763

68-
return (str(timeStamp),sigFinal)
64+
return (str(timeStamp),sigFinal)

0 commit comments

Comments
 (0)