Changeset 1587
- Timestamp:
- 10/03/08 23:29:05 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
satchmo/trunk/satchmo/payment/modules/authorizenet/processor.py
r1574 r1587 8 8 9 9 class PaymentProcessor(object): 10 #Authorize.NET payment processing module 11 #You must have an account with authorize.net in order to use this module 10 """ 11 Authorize.NET payment processing module 12 You must have an account with authorize.net in order to use this module 13 """ 12 14 def __init__(self, settings): 13 15 self.settings = settings … … 85 87 all_results = f.read() 86 88 except urllib2.URLError, ue: 87 log.error("error opening %s\n%s", self. url, ue)89 log.error("error opening %s\n%s", self.connection, ue) 88 90 return (False, 'ERROR', 'Could not talk to Authorize.net gateway') 89 91 … … 104 106 105 107 if __name__ == "__main__": 106 ##### 107 # This is for testing - enabling you to run from the command line and make 108 # sure everything is ok 109 ##### 110 108 """ 109 This is for testing - enabling you to run from the command line and make 110 sure everything is ok 111 """ 111 112 import os 112 113 from satchmo.configuration import config_get_group
