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/02/06 16:42:52 UTC

[18/50] git commit: [#4691] [fixup] Fixed mistake with for-else construct

[#4691] [fixup] Fixed mistake with for-else construct

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/31c81dce
Tree: http://git-wip-us.apache.org/repos/asf/incubator-allura/tree/31c81dce
Diff: http://git-wip-us.apache.org/repos/asf/incubator-allura/diff/31c81dce

Branch: refs/heads/cj/4691
Commit: 31c81dcec6228a57899edb42efe99c84e7270fd3
Parents: 912436e
Author: Cory Johns <jo...@geek.net>
Authored: Wed Dec 12 17:19:56 2012 +0000
Committer: Tim Van Steenburgh <tv...@gmail.com>
Committed: Tue Feb 5 20:22:51 2013 +0000

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


http://git-wip-us.apache.org/repos/asf/incubator-allura/blob/31c81dce/Allura/allura/model/repo_refresh.py
----------------------------------------------------------------------
diff --git a/Allura/allura/model/repo_refresh.py b/Allura/allura/model/repo_refresh.py
index 88c8709..dfabc5b 100644
--- a/Allura/allura/model/repo_refresh.py
+++ b/Allura/allura/model/repo_refresh.py
@@ -346,7 +346,7 @@ def compute_diffs(repo_id, tree_cache, rhs_ci):
         for name, lhs_id, rhs_id in _diff_trees(lhs_tree, rhs_tree, tree_index):
             differences.append(
                 dict(name=name, lhs_id=lhs_id, rhs_id=rhs_id))
-    else:
+    if not rhs_ci.parent_ids:
         # no parents, so everything in rhs is new
         tree_index = _update_cache([], rhs_treesdoc.tree_ids)
         rhs_tree = tree_index[rhs_ci.tree_id]