set cve.py's _name to all caps "CVE"

This commit is contained in:
jesopo 2019-03-28 21:54:18 +00:00
parent f39b723af4
commit c697c58b52

View file

@ -4,6 +4,8 @@ from src import ModuleManager, utils
URL_CVE = "https://cve.circl.lu/api/cve/%s" URL_CVE = "https://cve.circl.lu/api/cve/%s"
class Module(ModuleManager.BaseModule): class Module(ModuleManager.BaseModule):
_name = "CVE"
@utils.hook("received.command.cve", min_args=1) @utils.hook("received.command.cve", min_args=1)
def cve(self, event): def cve(self, event):
""" """