You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by br...@apache.org on 2013/03/14 21:23:08 UTC

[2/7] git commit: Contextual reminder if setup-app was not run

Contextual reminder if setup-app was not run


Project: http://git-wip-us.apache.org/repos/asf/incubator-allura/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-allura/commit/3d7f4df6
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/3d7f4df6
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/3d7f4df6

Branch: refs/heads/db/5973
Commit: 3d7f4df669d7b7dd19acf96d8503b27f10fd7796
Parents: b7b9f80
Author: Dave Brondsema <db...@geek.net>
Authored: Thu Mar 14 13:19:43 2013 -0400
Committer: Dave Brondsema <db...@geek.net>
Committed: Thu Mar 14 13:19:43 2013 -0400

----------------------------------------------------------------------
 Allura/allura/controllers/root.py |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/3d7f4df6/Allura/allura/controllers/root.py
----------------------------------------------------------------------
diff --git a/Allura/allura/controllers/root.py b/Allura/allura/controllers/root.py
index 69c80ec..5ac4767 100644
--- a/Allura/allura/controllers/root.py
+++ b/Allura/allura/controllers/root.py
@@ -75,7 +75,8 @@ class RootController(WsgiDispatchController):
         c.project = c.app = None
         c.memoize_cache = {}
         c.user = plugin.AuthenticationProvider.get(request).authenticate_request()
-        assert c.user is not None, 'c.user should always be at least User.anonymous()'
+        assert c.user is not None, ('c.user should always be at least User.anonymous(). '
+            'Did you run `paster setup-app` to create the database?')
 
     def _cleanup_request(self):
         pass
@@ -90,4 +91,3 @@ class RootController(WsgiDispatchController):
             SitemapEntry(cat.label, '/browse/'+cat.name) for cat in categories
         ]
         return dict(neighborhoods=neighborhoods,title="All Neighborhoods")
-