diff options
Diffstat (limited to 'src/interfaces/python/pgmodule.c')
-rw-r--r-- | src/interfaces/python/pgmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interfaces/python/pgmodule.c b/src/interfaces/python/pgmodule.c index c14c57011dd..f0194ed0e17 100644 --- a/src/interfaces/python/pgmodule.c +++ b/src/interfaces/python/pgmodule.c @@ -1498,7 +1498,7 @@ pgconnect(pgobject * self, PyObject * args, PyObject * dict) return NULL; #ifdef DEFAULT_VARS - /* handles defaults variables (for unintialised vars) */ + /* handles defaults variables (for uninitialised vars) */ if ((!pghost) && (pg_default_host != Py_None)) pghost = PyString_AsString(pg_default_host); |