diff options
author | Adrian Likins <alikins@redhat.com> | 2007-09-20 17:40:59 -0400 |
---|---|---|
committer | Adrian Likins <alikins@redhat.com> | 2007-09-20 17:40:59 -0400 |
commit | 50250e45f0c225198e08097a525cc5ff1b91474d (patch) | |
tree | d28dc5f4d699cad3387ee97be26f52e4ff701eb4 /server/server.py | |
parent | 5b0f3d1e802f4dbdee9b36fa5a526b63dd20f364 (diff) | |
download | third_party-func-50250e45f0c225198e08097a525cc5ff1b91474d.tar.gz third_party-func-50250e45f0c225198e08097a525cc5ff1b91474d.tar.xz third_party-func-50250e45f0c225198e08097a525cc5ff1b91474d.zip |
debug spew cleanup to protect the unwashed masses from foo poisoning
Diffstat (limited to 'server/server.py')
-rwxr-xr-x | server/server.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/server/server.py b/server/server.py index 42adcda..7b0a1a2 100755 --- a/server/server.py +++ b/server/server.py @@ -62,9 +62,7 @@ class XmlRpcInterface(object): FIXME: eventually calling most functions should go from here through getattr. """ self.handlers = {} - print "ffffffffffff", self.modules.keys() for x in self.modules.keys(): - print "x", x try: self.modules[x].register_rpc(self.handlers) self.logger.debug("adding %s" % x) @@ -185,7 +183,6 @@ def main(argv): module_path="modules/" mod_path="server/" - print "module_path_foo", module_path modules = module_loader.load_modules(module_path=module_path) print "modules", modules |