You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by je...@apache.org on 2015/08/13 20:06:32 UTC

[05/50] allura git commit: [#7947] fix7528 was bool, now its int

[#7947] fix7528 was bool, now its int


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

Branch: refs/heads/ib/7922
Commit: cc5f2ac60499ea89633bff2dd2a08ddb06a9b74a
Parents: ad029f8
Author: Dave Brondsema <db...@slashdotmedia.com>
Authored: Mon Aug 3 20:25:24 2015 +0000
Committer: Dave Brondsema <db...@slashdotmedia.com>
Committed: Mon Aug 3 20:25:24 2015 +0000

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


http://git-wip-us.apache.org/repos/asf/allura/blob/cc5f2ac6/Allura/allura/model/types.py
----------------------------------------------------------------------
diff --git a/Allura/allura/model/types.py b/Allura/allura/model/types.py
index 6a8ff71..833e685 100644
--- a/Allura/allura/model/types.py
+++ b/Allura/allura/model/types.py
@@ -27,7 +27,7 @@ class MarkdownCache(S.Object):
         super(MarkdownCache, self).__init__(
             fields=dict(
                 md5=S.String(),
-                fix7528=S.Bool,
+                fix7528=S.Anything,
                 html=S.String(),
                 render_time=S.Float()),
             **kw)