[Pykafe-commits] SF.net SVN: pykafe: [75] trunk/pykafe/client/client.py
Status: Pre-Alpha
Brought to you by:
jnmbk
|
From: <jn...@us...> - 2007-06-02 19:23:02
|
Revision: 75
http://pykafe.svn.sourceforge.net/pykafe/?rev=75&view=rev
Author: jnmbk
Date: 2007-06-02 12:23:03 -0700 (Sat, 02 Jun 2007)
Log Message:
-----------
fixed
Modified Paths:
--------------
trunk/pykafe/client/client.py
Modified: trunk/pykafe/client/client.py
===================================================================
--- trunk/pykafe/client/client.py 2007-06-02 19:22:36 UTC (rev 74)
+++ trunk/pykafe/client/client.py 2007-06-02 19:23:03 UTC (rev 75)
@@ -89,7 +89,6 @@
QtCore.QObject.connect(self.tcpSocket, QtCore.SIGNAL("readyRead()"), self.readServer)
else:
sys.stderr.write(_("Unauthorized server tried to connect, aborting connection: %s") % self.tcpSocket.peerAddress())
- self.terminate()
self.tcpSocket.waitForDisconnected()
self.exec_()
@@ -130,7 +129,6 @@
elif data[:3] == "016":
for c, value in map(lambda x,y:(x,y), ("price_fixedprice", "price_fixedpriceminutes", "price_onehourprice", "price_rounding"), data[3:].split("|")):
config.set(c, value)
- self.terminate()
def readUi(self):
data = base64.decodestring(self.tcpSocket.readAll())
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|