summaryrefslogtreecommitdiff
path: root/tutorial/php
diff options
context:
space:
mode:
authorJames E. King III <jking@apache.org>2019-01-31 18:35:51 -0500
committerJames E. King III <jking@apache.org>2019-02-01 11:13:49 -0500
commit3ec4031a4c6d685bcc02fa10dd13b2df58732b82 (patch)
treea8ca7edd5f22cc4503cdd194a2036e7764325663 /tutorial/php
parent53bd0e6295547e76ab00913cfd62f8d040bd996c (diff)
downloadthrift-3ec4031a4c6d685bcc02fa10dd13b2df58732b82.tar.gz
THRIFT-4405: fix cygwin on appveyor
Diffstat (limited to 'tutorial/php')
-rwxr-xr-xtutorial/php/runserver.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/tutorial/php/runserver.py b/tutorial/php/runserver.py
index 077daa102..8cc30fbe5 100755
--- a/tutorial/php/runserver.py
+++ b/tutorial/php/runserver.py
@@ -30,4 +30,5 @@ os.chdir(os.path.dirname(os.path.dirname(os.path.realpath(__file__))))
class Handler(CGIHTTPServer.CGIHTTPRequestHandler):
cgi_directories = ['/php']
+
BaseHTTPServer.HTTPServer(('', 8080), Handler).serve_forever()