From 43667dd9f20cf25a3a8a8f06f72364f336124699 Mon Sep 17 00:00:00 2001 From: Cayo Puigdefabregas Date: Tue, 9 Aug 2022 13:22:56 +0200 Subject: [PATCH] fix twin --- ereuse_devicehub/inventory/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ereuse_devicehub/inventory/views.py b/ereuse_devicehub/inventory/views.py index 81a4bbfc..7258b57f 100644 --- a/ereuse_devicehub/inventory/views.py +++ b/ereuse_devicehub/inventory/views.py @@ -268,7 +268,7 @@ class UnBindingView(GenericMixin): if device.is_abstract() != 'Twin': dhid = device.devicehub_id next_url = url_for('inventory.device_details', id=dhid) - messages.error('Device "{}" not is a Abstract device!'.format(dhid)) + messages.error('Device "{}" not is a Twin device!'.format(dhid)) return flask.redirect(next_url) self.get_context()