Removed Unused variable 'drivertype'

Fixes bug #1514399

Change-Id: I06154bdafb2be6d5ae65fc9d51c0dc7fafcaa8aa
This commit is contained in:
nandal 2015-11-09 06:45:45 -05:00
parent f93f311052
commit dcbf7b81a8
1 changed files with 1 additions and 1 deletions

View File

@ -312,7 +312,7 @@ class Backend(object):
for url_str in configured_urls:
url = sa_url.make_url(url_str)
m = re.match(r'([^+]+?)(?:\+(.+))?$', url.drivername)
database_type, drivertype = m.group(1, 2)
database_type = m.group(1)
Backend(database_type, url)