Skip to content

Commit

Permalink
Fix set notation for Python 2.6
Browse files Browse the repository at this point in the history
  • Loading branch information
treyhunner committed Jun 25, 2013
1 parent 1d09754 commit 29c7e05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions authorizenet/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ class Settings(object):
"""

prefix = 'AUTHNET_'
settings = {'DEBUG', 'LOGIN_ID', 'TRANSACTION_KEY', 'CUSTOMER_MODEL',
'DELIM_CHAR', 'FORCE_TEST_REQUEST', 'EMAIL_CUSTOMER',
'MD5_HASH'}
settings = set(('DEBUG', 'LOGIN_ID', 'TRANSACTION_KEY', 'CUSTOMER_MODEL',
'DELIM_CHAR', 'FORCE_TEST_REQUEST', 'EMAIL_CUSTOMER',
'MD5_HASH'))

class Default:
CUSTOMER_MODEL = getattr(
Expand Down

0 comments on commit 29c7e05

Please sign in to comment.