2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-04-29 12:06:44 +00:00

Fix PEP issue

This commit is contained in:
Oliver 2022-05-18 17:00:20 +10:00
parent 6147afe35f
commit 4ceb35a43f

View File

@ -29,7 +29,7 @@ class InvenTreePluginViewMixin:
try: try:
panels += plug.render_panels(self, self.request, ctx) panels += plug.render_panels(self, self.request, ctx)
except Exception as exc: except Exception:
# Prevent any plugin error from crashing the page render # Prevent any plugin error from crashing the page render
kind, info, data = sys.exc_info() kind, info, data = sys.exc_info()