Skip to content

Commit

Permalink
Fixes #20 - print executable in interactive mode
Browse files Browse the repository at this point in the history
  • Loading branch information
sean797 committed May 8, 2017
1 parent bb952e0 commit 4b7144e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
Binary file added tracer/controllers/.default.py.swp
Binary file not shown.
2 changes: 2 additions & 0 deletions tracer/views/helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ def render(self):
self.print(" Package: {pkg_name}" .format(pkg_name=self.args.package.name))
self.print(" Description: {pkg_description}" .format(pkg_description=self.args.package.description))
self.print(" Type: {type}" .format(type=self.args.application.type.capitalize()))
if self.args.application.affected_instances:
self.print(" Executable: {executable}".format(executable=self.args.application.affected_instances[0].exe))
else:
self.print(" Package: {app_name} is not provided by any package"
.format(app_name=self.args.application.name))
Expand Down

0 comments on commit 4b7144e

Please sign in to comment.