diff --git a/pisi/comariface.py b/pisi/comariface.py index f5cb3233..21b99c53 100644 --- a/pisi/comariface.py +++ b/pisi/comariface.py @@ -6,7 +6,6 @@ def registerScript(om, appname, scriptPath): s = socket.socket(socket.AF_UNIX,socket.SOCK_STREAM) s.connect("/tmp/comar") cmd = '+' + om + ' ' + appname + ' ' +scriptPath + '\n' - print cmd s.send(cmd) s.close() return True