diff --git a/ir-remote-timer.py b/ir-remote-timer.py index ec2cea1..2eb9dc0 100644 --- a/ir-remote-timer.py +++ b/ir-remote-timer.py @@ -29,12 +29,12 @@ def turnAllProjectorsOff(): class Simple(resource.Resource): isLeaf = True def render_GET(self, request): - print(request.prepath) + print(request) statustext = "" - if request.prepath == "on": + if request.uri == "/on": statustext = "turn all projectors on ..." turnAllProjectorsOn() - if request.prepath == "off": + if request.uri == "/off": statustext = "turn all projectors off ..." turnAllProjectorsOff() else: