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 2015/04/02 19:53:23 UTC

allura git commit: [#7072] Fix delete syntax to match previous ming changes in this function

Repository: allura
Updated Branches:
  refs/heads/master 758b51bc8 -> 80736ccab


[#7072] Fix delete syntax to match previous ming changes in this function


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

Branch: refs/heads/master
Commit: 80736ccabb56284005cb635c09ee5b67bb0e7554
Parents: 758b51b
Author: Heith Seewald <hs...@slashdotmedia.com>
Authored: Wed Apr 1 17:09:40 2015 -0400
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Thu Apr 2 17:52:34 2015 +0000

----------------------------------------------------------------------
 Allura/allura/controllers/auth.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/allura/blob/80736cca/Allura/allura/controllers/auth.py
----------------------------------------------------------------------
diff --git a/Allura/allura/controllers/auth.py b/Allura/allura/controllers/auth.py
index e874a17..1aa2d08 100644
--- a/Allura/allura/controllers/auth.py
+++ b/Allura/allura/controllers/auth.py
@@ -860,7 +860,7 @@ class SubscriptionsController(BaseController):
             project = projects.get(mb.project_id, None)
             app_config = app_index.get(mb.app_config_id, None)
             if project is None:
-                mb.m.delete()
+                mb.query.delete()
                 continue
             if app_config is None:
                 continue