commit | 7ea79933b30bb3fc239513a532da04218e41b2cb | [log] [tgz] |
---|---|---|
author | Rohan <Alchez@users.noreply.github.com> | Mon Mar 23 14:54:33 2020 +0530 |
committer | GitHub <noreply@github.com> | Mon Mar 23 14:54:33 2020 +0530 |
tree | d6e26b00f477db23498e4ebcb5db374faa16d210 | |
parent | 96297f73f2264a00a564ccae20bba4817eb26fd9 [diff] |
fix: handle error handling (#20815)
diff --git a/erpnext/stock/doctype/delivery_trip/delivery_trip.py b/erpnext/stock/doctype/delivery_trip/delivery_trip.py index a34db45..28e9533 100644 --- a/erpnext/stock/doctype/delivery_trip/delivery_trip.py +++ b/erpnext/stock/doctype/delivery_trip/delivery_trip.py
@@ -238,7 +238,7 @@ try: directions = maps_client.directions(**directions_data) except Exception as e: - frappe.throw(_(e)) + frappe.throw(_(str(e))) return directions[0] if directions else False