Skip to content

Commit

Permalink
Print process name instead of package name
Browse files Browse the repository at this point in the history
  • Loading branch information
FrostyX committed Mar 30, 2014
1 parent c0ee25c commit c2f6e3c
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions bin/tracer.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,8 @@ def main(argv=sys.argv, stdin=[]):
tracer = Tracer()
tracer.specified_packages = packages
tracer.now = args.now
for package in set(tracer.trace_running()):
# More times a package is updated the more times it is contained in a package list.
print package.name
for process in set(tracer.trace_running()):
print process.name

if __name__ == '__main__':
if os.getuid() != 0:
Expand Down

1 comment on commit c2f6e3c

@FrostyX
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

There is forgotten part of this commit on the end of 01519bf in resources/tracer.py file.

Please sign in to comment.