Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Merge pull request #3527 from gratipay/unclaimed-paypal
Browse files Browse the repository at this point in the history
Our first "Unclaimed" PayPal payout
  • Loading branch information
rohitpaulk committed Jun 11, 2015
2 parents 567fa6d + b83f10d commit fab4089
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion bin/masspay.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,7 +199,10 @@ def compute_output_csvs():


def load_statuses():
_status_map = {'Completed': 'succeeded', 'Denied': 'failed'} # PayPal -> Gratipay
_status_map = { 'Completed': 'succeeded'
, 'Unclaimed': 'pending'
, 'Denied': 'failed'
} # PayPal -> Gratipay
statuses = {}
fp = open(REPORT_CSV)
for line in fp:
Expand Down

0 comments on commit fab4089

Please sign in to comment.