Fix timezone in example.

This commit is contained in:
Ben Sturmfels 2021-11-26 15:31:20 +11:00
parent df7222371b
commit 8d5d951369
Signed by: bsturmfels
GPG key ID: 023C05E2C9C068F0

View file

@ -4,8 +4,8 @@ Run it like this:
$ export PAYPAL_CLIENT_ID=XXX
$ export PAYPAL_CLIENT_SECRET=YYY
$ python3 paypal_report.py profiles 2021-11-01T00:00:00-0700 2021-11-30T23:59:59-0700 > out.txt
$ python3 paypal_report.py transactions 2021-11-01T00:00:00-0700 2021-11-30T23:59:59-0700 > out.txt
$ python3 paypal_report.py profiles 2021-11-01T00:00:00-07:00 2021-11-30T23:59:59-07:00 > profiles.txt
$ python3 paypal_report.py transactions 2021-11-01T00:00:00-07:00 2021-11-30T23:59:59-07:00 > transactions.txt
"""
import argparse
@ -136,6 +136,6 @@ def report_on_transactions(transactions):
else:
print(f'Skipping transaction {transaction_info["transaction_id"]} with no PayPal Reference ID.', file=sys.stderr)
if __name__ == '__main__':
main()