summaryrefslogtreecommitdiff
path: root/examples/uwsgirouter.py
diff options
context:
space:
mode:
Diffstat (limited to 'examples/uwsgirouter.py')
-rw-r--r--examples/uwsgirouter.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/uwsgirouter.py b/examples/uwsgirouter.py
index 6da6cc38..541238e4 100644
--- a/examples/uwsgirouter.py
+++ b/examples/uwsgirouter.py
@@ -37,7 +37,7 @@ def application(env, start_response):
# get the input fd
input = env['wsgi.input'].fileno()
- # read (in async mode) upto 'cl' data and send to uwsgi peer
+ # read (in async mode) up to 'cl' data and send to uwsgi peer
while cl > 0:
bufsize = min(cl, 4096)
yield uwsgi.wait_fd_read(input, 30)