Skip to content

Commit 9c1050d

Browse files
author
Cosmin Bianu
committed
Fixed untranslated print statement
1 parent 84e4615 commit 9c1050d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CreateFeaturesHandler.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def __init__(self, pkts_window_size=10, single_csv=True):
2424
self.csv.create_empty_csv()
2525
self.csv.add_row(self.featuresCalc.get_features_name())
2626

27-
def compute_features(self):
27+
def compute_features(self, threads=1):
2828

2929
def malware_features():
3030
folder_name = "Pcaps_Malware"
@@ -43,7 +43,7 @@ def malware_features():
4343
csv.create_empty_csv()
4444
csv.add_row(self.featuresCalc.get_features_name())
4545
array_of_pkts = []
46-
print("\nCalcolo features di " + pcap + "\n")
46+
print("\nComputing features for " + pcap + "\n")
4747
attacker = AttackerCalc(pcap=pcap)
4848
ip_to_consider = attacker.compute_attacker()
4949
for filter in self.filters:

0 commit comments

Comments
 (0)