commit | 9d77e9f719b47f8c38fbabac8f20252249cc3d12 | [log] [tgz] |
---|---|---|
author | Rohan <Alchez@users.noreply.github.com> | Thu Sep 05 14:51:22 2019 +0530 |
committer | Nabin Hait <nabinhait@gmail.com> | Thu Sep 05 14:51:22 2019 +0530 |
tree | 12d7cd254cd135f4fe042cd855acbc1eb4c7269b | |
parent | 7496548c3978b6991ff516021d4bd0cdd86ec932 [diff] |
fix: error while trying to get directions (#18827)
diff --git a/erpnext/stock/doctype/delivery_trip/delivery_trip.py b/erpnext/stock/doctype/delivery_trip/delivery_trip.py index a253811..77d322e 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.message)) + frappe.throw(_(e)) return directions[0] if directions else False