[wpdev-commits] xmlscripts/scripts webadmin.py,1.13,1.14
Brought to you by:
rip,
thiagocorrea
|
From: <dr...@us...> - 2004-01-06 13:09:15
|
Update of /cvsroot/wpdev/xmlscripts/scripts In directory sc8-pr-cvs1:/tmp/cvs-serv21551 Modified Files: webadmin.py Log Message: I think def __init__( self, port=REMOTEADMIN_PORT ): might be better than def __init__( self, port=2594 ): I personally change the value of REMOTEADMIN_PORT so this might prevent a problem. Index: webadmin.py =================================================================== RCS file: /cvsroot/wpdev/xmlscripts/scripts/webadmin.py,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** webadmin.py 30 Nov 2003 18:16:00 -0000 1.13 --- webadmin.py 6 Jan 2004 13:09:12 -0000 1.14 *************** *** 231,235 **** class WebserverThread(Thread): ! def __init__( self, port=2594 ): Thread.__init__( self ) self.port = port --- 231,235 ---- class WebserverThread(Thread): ! def __init__( self, port=REMOTEADMIN_PORT ): Thread.__init__( self ) self.port = port |