Revision: 349
http://virtplayground.svn.sourceforge.net/virtplayground/?rev=349&view=rev
Author: chozone
Date: 2010-07-30 00:32:51 +0000 (Fri, 30 Jul 2010)
Log Message:
-----------
Another typo in server/callback.py, forgot 'print' for the actual string... woopsie...
Modified Paths:
--------------
trunk/server/callback.py
Modified: trunk/server/callback.py
===================================================================
--- trunk/server/callback.py 2010-07-30 00:22:33 UTC (rev 348)
+++ trunk/server/callback.py 2010-07-30 00:32:51 UTC (rev 349)
@@ -32,9 +32,9 @@
print "*** SERVER ONLINE ***"
def enters_vp(self, cid):
- " > %s"%cid
+ print " > %s"%cid
def leaves_vp(self, cid):
- " < %s"%cid
+ print " < %s"%cid
def check_login(self, usr, pwd):
db.execute("SELECT `username` FROM `users` WHERE \
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|