Skip to content

Commit

Permalink
Call parent constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
FrostyX committed Dec 29, 2014
1 parent d56fb70 commit dcf0178
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tracer/resources/processes.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,8 @@ class AffectedProcess(Process):
packages = None
files = None

def __init__(self):
def __init__(self, pid=None):
Process.__init__(self, pid)
self.packages = set()
self.files = set()

Expand Down

0 comments on commit dcf0178

Please sign in to comment.