Skip to content

Commit

Permalink
Merge pull request #130 from belm0/example_server_path
Browse files Browse the repository at this point in the history
fix request path access in example server
  • Loading branch information
mehaase committed Aug 1, 2019
2 parents ad1fe07 + cee2d58 commit 5bd98b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ async def main(args):

async def handler(request):
''' Reverse incoming websocket messages and send them back. '''
logging.info('Handler starting on path "%s"' % request.url.path_qs)
logging.info('Handler starting on path "%s"' % request.path)
ws = await request.accept()
while True:
try:
Expand Down

0 comments on commit 5bd98b0

Please sign in to comment.