Skip to content

Commit

Permalink
Merge branch 'master' of github.com:Introduction-to-Tornado/Introduct…
Browse files Browse the repository at this point in the history
…ion-to-Tornado
  • Loading branch information
brendanberg committed Dec 15, 2011
2 parents 456549f + 2a624eb commit cc5d523
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion async_http/tweet_rate.py
Expand Up @@ -10,7 +10,7 @@
import time

from tornado.options import define, options
define("port", default=8888, help="run on the given port", type=int)
define("port", default=8000, help="run on the given port", type=int)

class IndexHandler(tornado.web.RequestHandler):
def get(self):
Expand Down
2 changes: 1 addition & 1 deletion async_http/tweet_rate_async.py
Expand Up @@ -10,7 +10,7 @@
import time

from tornado.options import define, options
define("port", default=8888, help="run on the given port", type=int)
define("port", default=8000, help="run on the given port", type=int)

class IndexHandler(tornado.web.RequestHandler):
@tornado.web.asynchronous
Expand Down
2 changes: 1 addition & 1 deletion async_http/tweet_rate_gen.py
Expand Up @@ -11,7 +11,7 @@
import time

from tornado.options import define, options
define("port", default=8888, help="run on the given port", type=int)
define("port", default=8000, help="run on the given port", type=int)

class IndexHandler(tornado.web.RequestHandler):
@tornado.web.asynchronous
Expand Down

0 comments on commit cc5d523

Please sign in to comment.