Rename exception variable in makeAlert

This commit is contained in:
Veronica Berglyd Olsen
2023-08-13 19:23:03 +02:00
parent 863dcf8b37
commit fd181b18a6
4 changed files with 11 additions and 13 deletions
+1 -1
View File
@@ -480,7 +480,7 @@ class ProjectBuilder:
except Exception as exc:
self.mainGui.makeAlert(self.tr(
"Failed to create a new example project."
), level=nwAlert.ERROR, exception=exc)
), level=nwAlert.ERROR, exc=exc)
return False
else: