Thanks Dave.

Attached patch for a minor fix to a variable name typo.

Thanks,
Khushboo

On Fri, Feb 26, 2016 at 8:53 PM, Dave Page <[email protected]> wrote:

> Thanks - applied with a minor fix to a variable name that was misspelt.
>
> On Fri, Feb 26, 2016 at 12:36 PM, Khushboo Vashi
> <[email protected]> wrote:
> > Hi,
> >
> > The Security Labels and the Variables are used in many modules under the
> > Database Node.
> > The functions to parse and return them into desired format, are kept in
> the
> > database utility file (databases/utils.py), so every node can use them.
> >
> > I have applied the related changes in the database module.
> >
> > Please find attached patch for the same.
> >
> > Thanks,
> > Khushboo
> >
> >
> >
> > --
> > Sent via pgadmin-hackers mailing list ([email protected])
> > To make changes to your subscription:
> > http://www.postgresql.org/mailpref/pgadmin-hackers
> >
>
>
>
> --
> Dave Page
> Blog: http://pgsnake.blogspot.com
> Twitter: @pgsnake
>
> EnterpriseDB UK: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company
>
diff --git a/web/pgadmin/browser/server_groups/servers/databases/utils.py b/web/pgadmin/browser/server_groups/servers/databases/utils.py
index 1340d37..d876c87 100644
--- a/web/pgadmin/browser/server_groups/servers/databases/utils.py
+++ b/web/pgadmin/browser/server_groups/servers/databases/utils.py
@@ -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("=")
-- 
Sent via pgadmin-hackers mailing list ([email protected])
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgadmin-hackers

Reply via email to