Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Just a little fix regarding the blueprint #9

Merged
merged 1 commit into from
Sep 14, 2012
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions app.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
application: your-app-name-here
version: 1
runtime: python
runtime: python27
api_version: 1
threadsafe: no


# In production, uncomment line below.
Expand All @@ -24,7 +25,7 @@ skip_files:
builtins:
- appstats: on
- remote_api: on
- datastore_admin: on



handlers:
Expand Down
2 changes: 1 addition & 1 deletion app/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
from models import Todo
from forms import TodoForm, EmailForm

views = Blueprint(__name__, 'views')
views = Blueprint('views', __name__)


@views.route('/')
Expand Down