You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@allura.apache.org by jo...@apache.org on 2013/03/07 16:30:54 UTC

[5/5] git commit: [#5854] Fixed TypeError on bad LCD data

Updated Branches:
  refs/heads/cj/5854 4ad63a29a -> 5e9f7bda2 (forced update)


[#5854] Fixed TypeError on bad LCD data

Signed-off-by: Cory Johns <jo...@geek.net>


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

Branch: refs/heads/cj/5854
Commit: 5e9f7bda2176f795a0e0a77f945de5c811164ad4
Parents: b9587cc
Author: Cory Johns <jo...@geek.net>
Authored: Thu Mar 7 15:30:36 2013 +0000
Committer: Cory Johns <jo...@geek.net>
Committed: Thu Mar 7 15:30:36 2013 +0000

----------------------------------------------------------------------
 Allura/allura/model/repo.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/5e9f7bda/Allura/allura/model/repo.py
----------------------------------------------------------------------
diff --git a/Allura/allura/model/repo.py b/Allura/allura/model/repo.py
index 767b144..3df5f59 100644
--- a/Allura/allura/model/repo.py
+++ b/Allura/allura/model/repo.py
@@ -553,7 +553,7 @@ class Tree(RepoObject):
                                 author=commit_info['author'],
                                 author_email=commit_info['author_email'],
                                 author_url=commit_info['author_url'],
-                                date=commit_info['date'],
+                                date=commit_info.get('date'),
                                 href=commit_info.get('href',''),
                                 shortlink=commit_info['shortlink'],
                                 summary=commit_info['summary'],