Skip to content

Commit

Permalink
Merge pull request #4 from philipmat/patch-1
Browse files Browse the repository at this point in the history
Making it work with Flask >= 0.10 (Issue #3)
  • Loading branch information
jeanphix committed Apr 19, 2015
2 parents f854c5c + e551210 commit 40e13e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flask_dashed/admin.py
Expand Up @@ -289,7 +289,7 @@ def default_rules(self):
"""
return [
('/', 'list', self.list_view.as_view('short_title', self)),
('/page/<page>', 'list', self.list_view.as_view('short_title',
('/page/<page>', 'listpaged', self.list_view.as_view('short_title',
self)),
('/new', 'new', self.form_view.as_view('short_title', self)),
('/<pk>/edit', 'edit', self.form_view.as_view('short_title',
Expand Down

0 comments on commit 40e13e8

Please sign in to comment.