Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions process.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def main():
log.error("Unable to load saved instantiation: %s", e)
return 1
else:
inst = main_process(args, asp, aspc, file_contexts, primary_filesystem,
inst,graph = main_process(args, asp, aspc, file_contexts, primary_filesystem,
android_version)

if inst is None:
Expand Down Expand Up @@ -267,7 +267,7 @@ def main_process(args, asp, aspc, file_contexts, primary_filesystem, android_ver
#inst.file_mapping = {}
aspc._save_db(inst, "inst")

return inst
return inst,graph

def make_cute(G, show_labels=True):
import math
Expand Down