diff options
author | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-07-24 16:52:35 +0200 |
---|---|---|
committer | Stanislav Ochotnicky <sochotnicky@gmail.com> | 2009-07-25 00:51:52 +0200 |
commit | 37f7aad9a0bd4432b3248fc98d7fc122de88178f (patch) | |
tree | 7a09eada3f3d7ad53882d985e8a8ee832266f921 /src/matchbox/__init__.py | |
parent | Added rw bind of packages portage subdirectory (diff) | |
download | collagen-37f7aad9a0bd4432b3248fc98d7fc122de88178f.tar.gz collagen-37f7aad9a0bd4432b3248fc98d7fc122de88178f.tar.bz2 collagen-37f7aad9a0bd4432b3248fc98d7fc122de88178f.zip |
Added debugging output
Diffstat (limited to 'src/matchbox/__init__.py')
-rw-r--r-- | src/matchbox/__init__.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/matchbox/__init__.py b/src/matchbox/__init__.py index 36f6632..5e21e35 100644 --- a/src/matchbox/__init__.py +++ b/src/matchbox/__init__.py @@ -62,6 +62,7 @@ class MatchboxServer(object): print "returning next package to compile" # TODO get real package from database with missing info repl = protocol.GetNextPackageReply(self._get_next_package(),None,None) + print "name: %s" % repl.package_name client_socket.sendall(pickle.dumps(repl)) elif type(command) is protocol.AddPackageInfo: |