Skip to content

Commit

Permalink
Revert "Run the website in python2.7 mode"
Browse files Browse the repository at this point in the history
Can't use python2.7 mode without migrating to the "high-replication
datastore", and even though we don't have any data "migration" is a
pain.

This reverts commit e960e9b.
  • Loading branch information
bdarnell committed Jan 30, 2012
1 parent 02bc761 commit cc8e893
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions website/app.yaml
@@ -1,15 +1,14 @@
application: python-tornado
version: 2
runtime: python27
threadsafe: yes
runtime: python
api_version: 1

handlers:
- url: /static/tornado-0.1.tar.gz
script: website.application
script: website.py

- url: /static/tornado-0.2.tar.gz
script: website.application
script: website.py

- url: /static/
static_dir: static
Expand All @@ -23,10 +22,10 @@ handlers:
upload: static/favicon.ico

- url: /documentation/?
script: website.application
script: website.py

- url: /documentation
static_dir: sphinx/build/html

- url: /.*
script: website.application
script: website.py

0 comments on commit cc8e893

Please sign in to comment.