[Blahzdns-cvs] blahzdns/outputInterfaces bind9.py,1.3,1.4 tinydns.py,1.10,1.11
Status: Alpha
Brought to you by:
msroest
From: Mike R. <ms...@us...> - 2004-04-24 22:54:02
|
Update of /cvsroot/blahzdns/blahzdns/outputInterfaces In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv6033 Modified Files: bind9.py tinydns.py Log Message: Fixed bug in both output interfaces to remove " escapes that get returned from the DB Index: tinydns.py =================================================================== RCS file: /cvsroot/blahzdns/blahzdns/outputInterfaces/tinydns.py,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** tinydns.py 10 Jan 2004 01:25:27 -0000 1.10 --- tinydns.py 24 Apr 2004 22:53:53 -0000 1.11 *************** *** 1,2 **** --- 1,3 ---- + w #!/bin/env python # File: tinydns.py *************** *** 276,279 **** --- 277,281 ---- for name,value in result: configHash[name] = value + configHash[name] = string.replace(configHash[name],"\\\"","\"") return configHash Index: bind9.py =================================================================== RCS file: /cvsroot/blahzdns/blahzdns/outputInterfaces/bind9.py,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** bind9.py 29 Mar 2004 02:48:35 -0000 1.3 --- bind9.py 24 Apr 2004 22:53:53 -0000 1.4 *************** *** 339,342 **** --- 339,343 ---- for name,value in result: configHash[name] = value + configHash[name] = string.replace(configHash[name],"\\\"","\"") return configHash |