diff --git a/analyzers/Threatcrowd/threatcrowd_analyzer.py b/analyzers/Threatcrowd/threatcrowd_analyzer.py index 75c0266e5..c4f3bf85a 100755 --- a/analyzers/Threatcrowd/threatcrowd_analyzer.py +++ b/analyzers/Threatcrowd/threatcrowd_analyzer.py @@ -42,7 +42,7 @@ def run(self): threatcrowd_data_type = self.data_type if self.data_type != 'mail' else 'email' try: response = requests.get("{}/{}/report/".format(self.URI, threatcrowd_data_type), - {threatcrowd_data_type: self.get_data()}) + params = {threatcrowd_data_type: self.get_data()}) self.report(response.json()) except Exception as e: self.unexpectedError(e)