Merge pull request #44 from pypeclub/bugfix/deprecated_app_attribute

Fix Application attribute
This commit is contained in:
Milan Kolar 2021-04-02 11:28:15 +02:00 committed by GitHub
commit 3152d9fc71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -72,7 +72,7 @@ class ApplictionExecutableNotFound(Exception):
for executable in application.executables:
details += "\n- " + executable.executable_path
self.msg = msg.format(application.full_label, application.app_name)
self.msg = msg.format(application.full_label, application.name)
self.details = details
exc_mgs = str(self.msg)