From 4aa1c7558ba0b6f61e700bc9ca530ada6c3e5474 Mon Sep 17 00:00:00 2001 From: Steve Wilkerson Date: Fri, 26 Feb 2016 08:25:42 -0600 Subject: [PATCH] Fixed type in get_audit_template_by_name method Removed an extra underscore in the get_audit_template_by__name method name in watcher/db/api.py Change-Id: I2687858ff4510c626c4dd2e2e9a5701405b5da55 Closes-Bug: #1548765 --- watcher/db/api.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcher/db/api.py b/watcher/db/api.py index 4ee65c65c..9b543294b 100644 --- a/watcher/db/api.py +++ b/watcher/db/api.py @@ -98,7 +98,7 @@ class BaseConnection(object): :raises: AuditTemplateNotFound """ - def get_audit_template_by__name(self, context, audit_template_name): + def get_audit_template_by_name(self, context, audit_template_name): """Return an audit template. :param context: The security context