Skip to content

Commit

Permalink
Update wifi-btn-server.py
Browse files Browse the repository at this point in the history
  • Loading branch information
auckenox authored Feb 21, 2018
1 parent af1d0a2 commit b6b4408
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions wifi-btn-server.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def getButtonInfos(ip,mac):


############ HTTP SERVER ########################################################
class antras_RQH(BaseHTTPRequestHandler):
class auckenox_RQH(BaseHTTPRequestHandler):

def log_message(self, format, *args):
return False
Expand Down Expand Up @@ -141,7 +141,7 @@ def do_GET(self):

def run():
server_address = ('', server_port)
httpd = HTTPServer(server_address, antras_RQH)
httpd = HTTPServer(server_address, auckenox_RQH)
httpd.serve_forever()

if __name__ == '__main__':
Expand Down

0 comments on commit b6b4408

Please sign in to comment.