From 32cdde6d48b6e703b94b03a33a44e96fee6da78b Mon Sep 17 00:00:00 2001 From: "Karl O. Pinc" Date: Wed, 7 Nov 2018 08:25:28 -0600 Subject: [PATCH] Preface all pgwui settings with "pgwui." --- examples/development.ini | 6 +++--- examples/pgwui.ini | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/examples/development.ini b/examples/development.ini index 9475cef..a384825 100644 --- a/examples/development.ini +++ b/examples/development.ini @@ -16,8 +16,8 @@ use = egg:PGWUI_Server # Postgres client configuration. # (An empty string for host means use the unix socket.) -pg_host = -pg_port = 5432 +pgwui.pg_host = +pgwui.pg_port = 5432 # What PGWUI modules to use. pyramid.includes = @@ -27,7 +27,7 @@ pyramid.includes = # Whether or not to change the db content. #dry_run = True -dry_run = False +pgwui.dry_run = False # diff --git a/examples/pgwui.ini b/examples/pgwui.ini index 74b563b..b68aeac 100644 --- a/examples/pgwui.ini +++ b/examples/pgwui.ini @@ -16,8 +16,8 @@ use = egg:PGWUI_Server # Postgres client configuration. # (An empty string for host means use the unix socket.) -pg_host = -pg_port = 5432 +pgwui.pg_host = +pgwui.pg_port = 5432 # What PGWUI modules to use. pyramid.includes = @@ -25,7 +25,7 @@ pyramid.includes = pgwui_upload # Whether or not to change the db content. -dry_run = False +pgwui.dry_run = False # -- 2.34.1