Skip to content

Commit

Permalink
Fix missing normalize_path() in graph
Browse files Browse the repository at this point in the history
Amends cf9256c.
  • Loading branch information
remram44 committed Sep 9, 2015
1 parent 5e16e10 commit 886526d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reprounzip/reprounzip/unpackers/graph.py
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ def generate(target, directory, all_forks=False):

elif event_type == 'exec':
r_name, r_timestamp, r_process, r_argv = data
r_name = PosixPath(r_name)
r_name = normalize_path(r_name)
process = processes[r_process]
binaries.add(r_name)
# Here we split this process in two "programs", unless the previous
Expand Down

0 comments on commit 886526d

Please sign in to comment.