Small changes

This commit is contained in:
relikd
2020-09-19 13:59:23 +02:00
parent 33ae7a445e
commit e5529131ba
4 changed files with 5 additions and 4 deletions

View File

@@ -4,7 +4,7 @@ import os
import re
import sys
import common_lib as mylib
import tracker_download as tracker
import tracker_download
THRESHOLD_PERCENT_OF_LOGS = 0.33 # domain appears in % recordings
@@ -49,7 +49,7 @@ def json_combine(bundle_id):
try:
ddic[key][1].append(num)
except KeyError:
ddic[key] = (tracker.is_tracker(key), [num])
ddic[key] = (tracker_download.is_tracker(key), [num])
res = {'rec_len': []}
pardom = {}