MISP / misp-dashboard

A live dashboard for a real-time overview of threat intelligence from MISP instances
GNU Affero General Public License v3.0
192 stars 66 forks source link

Slight syntax error in diagnostic.py file #166

Open Khayo-7 opened 2 years ago

Khayo-7 commented 2 years ago

change line #391

   return (False, 'Can\'t connect to {}').format(url)

to

   return (False, 'Can\'t connect to {}'.format(url))