Resolved a typo in variable name in the database/utils.py

This commit is contained in:
Ashesh Vashi 2016-02-29 10:44:57 +05:30
parent 3051e7cd62
commit 54edb4b482

View File

@ -65,7 +65,7 @@ def parse_variables_from_db(db_variables):
variables_lst = []
if db_variables is not None:
for row in db_varibles:
for row in db_variables:
if 'setconfig' in row and row['setconfig'] is not None:
for d in row['setconfig']:
var_name, var_value = d.split("=")