commit-gnue
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnue] r7292 - trunk/gnue-common/src/datasources


From: reinhard
Subject: [gnue] r7292 - trunk/gnue-common/src/datasources
Date: Mon, 4 Apr 2005 16:51:55 -0500 (CDT)

Author: reinhard
Date: 2005-04-04 16:51:54 -0500 (Mon, 04 Apr 2005)
New Revision: 7292

Modified:
   trunk/gnue-common/src/datasources/GConnections.py
Log:
Use RawConfigParser for connections.conf to allow for placeholders.


Modified: trunk/gnue-common/src/datasources/GConnections.py
===================================================================
--- trunk/gnue-common/src/datasources/GConnections.py   2005-04-04 21:50:47 UTC 
(rev 7291)
+++ trunk/gnue-common/src/datasources/GConnections.py   2005-04-04 21:51:54 UTC 
(rev 7292)
@@ -38,6 +38,7 @@
 # $Id: $
 
 from ConfigParser import *
+from ConfigParser import RawConfigParser # is not in __all__
 import sys, string, copy, netrc
 from gnue.common.apps import plugin, errors, i18n
 from gnue.common.datasources import Exceptions
@@ -84,7 +85,7 @@
 
     self._loginHandler = loginHandler
     self._loginOptions = loginOptions
-    self._parser = ConfigParser()
+    self._parser = RawConfigParser()
     self._location = location
     self._authenticatedUsers = {}
     self._eventHandler=eventhandler





reply via email to

[Prev in Thread] Current Thread [Next in Thread]