summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-06-30 12:18:31 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-06-30 12:18:31 -0400
commit9a995865a851907e9dc6c301454d4bfcd3509b2f (patch)
tree83e7dd2896c8235cb20f704b85a78d605fcde2e5
parentc82e6e787268e7894582222e11c155a088f10964 (diff)
downloadthird_party-func-9a995865a851907e9dc6c301454d4bfcd3509b2f.tar.gz
third_party-func-9a995865a851907e9dc6c301454d4bfcd3509b2f.tar.xz
third_party-func-9a995865a851907e9dc6c301454d4bfcd3509b2f.zip
Remove a few stray prints
-rw-r--r--func/minion/AuthedXMLRPCServer.py4
1 files changed, 1 insertions, 3 deletions
diff --git a/func/minion/AuthedXMLRPCServer.py b/func/minion/AuthedXMLRPCServer.py
index 7bba160..8545d15 100644
--- a/func/minion/AuthedXMLRPCServer.py
+++ b/func/minion/AuthedXMLRPCServer.py
@@ -60,7 +60,6 @@ class BaseAuthedXMLRPCServer(SocketServer.ForkingMixIn):
self.instance = None
def get_authinfo(self, request, client_address):
- print 'down here'
if self.authinfo_callback:
return self.authinfo_callback(request, client_address)
return None
@@ -84,12 +83,11 @@ class AuthedXMLRPCServer(BaseAuthedXMLRPCServer, SSLCommon.BaseServer, SimpleXML
###########################################################
-# Testing stuff
+# Testing code only
###########################################################
class ReqHandler:
def ping(self, callerid, trynum):
- print 'clearly not'
print callerid
print trynum
return "pong %d / %d" % (callerid, trynum)