From 6a14727f31790b65935f96153e1b422e5c80362c Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Mon, 20 Mar 2023 17:34:20 +0100 Subject: [PATCH] fix names of titles --- ereuse_devicehub/resources/documents/documents.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ereuse_devicehub/resources/documents/documents.py b/ereuse_devicehub/resources/documents/documents.py index b41f3cbd..363fda83 100644 --- a/ereuse_devicehub/resources/documents/documents.py +++ b/ereuse_devicehub/resources/documents/documents.py @@ -280,7 +280,7 @@ class LotRow(OrderedDict): self['Registered in'] = format(lot.created, '%c') try: self['Description'] = lot.description - except: + except Exception: self['Description'] = ''