Commit 7f20fdae authored by Amos Latteier's avatar Amos Latteier

added module name to the request

parent ebf67a60
......@@ -3,10 +3,10 @@ from ZPublisher import publish_module
from cStringIO import StringIO
class ZServerPublisher:
def __init__(self, name, accept):
def __init__(self, accept):
while 1:
input, output, environ = accept()
try:
name,input,output,environ=accept()
publish_module(
name,
stdin=input,
......
......@@ -3,10 +3,10 @@ from ZPublisher import publish_module
from cStringIO import StringIO
class ZServerPublisher:
def __init__(self, name, accept):
def __init__(self, accept):
while 1:
input, output, environ = accept()
try:
name,input,output,environ=accept()
publish_module(
name,
stdin=input,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment