Compare commits

..

1 Commits

Author SHA1 Message Date
Adasauce a364bbe1d3
have Makefile `cp -r` the _static contents 5 years ago
  1. 4
      cronjob.py
  2. 3
      fosspay/currency.py

@ -12,8 +12,6 @@ import subprocess
stripe.api_key = _cfg("stripe-secret")
currency = _cfg("currency")
print("Processing monthly donations at " + str(datetime.utcnow()))
donations = Donation.query \
@ -31,7 +29,7 @@ for donation in donations:
try:
charge = stripe.Charge.create(
amount=donation.amount,
currency=currency,
currency="usd",
customer=user.stripe_customer,
description="Donation to " + _cfg("your-name")
)

@ -13,8 +13,7 @@ class Currency:
currencies = {
'usd' : Currency("$", "left"),
'eur' : Currency("", "right"),
'cad' : Currency("$", "left")
'eur' : Currency("", "right")
# ... More currencies can be added here
}

Loading…
Cancel
Save