소스 검색

byte string if

master
Andreas Demmelbauer 4 년 전
부모
커밋
46d1f8542e
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      ir-remote-timer.py

+ 3
- 3
ir-remote-timer.py 파일 보기

@@ -31,16 +31,16 @@ class Simple(resource.Resource):
def render_GET(self, request):
print(request)
statustext = ""
if request.uri == "/on":
if request.uri == b"/on":
statustext = "turn all projectors on ..."
turnAllProjectorsOn()
if request.uri == "/off":
if request.uri == b"/off":
statustext = "turn all projectors off ..."
turnAllProjectorsOff()
else:
statustext = ""
html = '<b>%s</b>' % statustext
html = '<b> %s </b>' % statustext
return html.encode('utf-8')

site = server.Site(Simple())


불러오는 중...
취소
저장