From 5bc1f747db940c000af1a30ea3bb15aed861ed71 Mon Sep 17 00:00:00 2001 From: Nathan Chapman Date: Fri, 25 Nov 2022 07:35:23 -0700 Subject: [PATCH] Fix shipping weight when sending to USPS --- src/core/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/__init__.py b/src/core/__init__.py index f8e65f7..ce62b38 100644 --- a/src/core/__init__.py +++ b/src/core/__init__.py @@ -135,8 +135,8 @@ def build_usps_rate_request(weight, container, zip_destination): 'service': ShippingService.PRIORITY_COMMERCIAL, 'zip_origination': settings.DEFAULT_ZIP_ORIGINATION, 'zip_destination': zip_destination, - 'pounds': '0', - 'ounces': weight, + 'pounds': weight, + 'ounces': '0', 'container': container, 'width': '', 'length': '',