Fixes a small bug with one of the command line samples for AdSense. s/paymentAmountMicros/paymentAmount.
diff --git a/samples/adsense/get_all_payments.py b/samples/adsense/get_all_payments.py
index 1146f0e..a299287 100644
--- a/samples/adsense/get_all_payments.py
+++ b/samples/adsense/get_all_payments.py
@@ -42,7 +42,7 @@
         for payment in payments:
           print ('Payment with id "%s" of %s %s and date %s was found. '
                  % (str(payment['id']),
-                    payment['paymentAmountMicros'],
+                    payment['paymentAmount'],
                     payment['paymentAmountCurrencyCode'],
                     payment.get('paymentDate', 'unknown')))
       else: