]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Fix typos (argh!). #319
authorMaciej Małecki <maciej.malecki@notimplemented.org>
Mon, 22 Aug 2011 22:24:36 +0000 (00:24 +0200)
committerBen Darnell <ben@bendarnell.com>
Sun, 28 Aug 2011 06:30:29 +0000 (23:30 -0700)
tornado/autoreload.py

index 277dbbdce24f79ce229665521ef98cf1c8cfa286..20c5663af94f61fa81d800e058b4ca4fe051b35c 100644 (file)
@@ -144,8 +144,8 @@ def _reload():
         signal.setitimer(signal.ITIMER_REAL, 0, 0)
     if sys.platform == 'win32':
         # os.execv is broken on Windows and can't properly parse command line
-        # arguments and executable name if they containt whitespaces. subprocess
-        # fixes thath behavior.
+        # arguments and executable name if they contain whitespaces. subprocess
+        # fixes that behavior.
         subprocess.Popen([sys.executable] + sys.argv)
         sys.exit(0)
     else: