# HG changeset patch # User Marcin Kuzminski # Date 1354223956 -3600 # Node ID 3b3de7c68ae1e4aae1749ea6eefcabad65748540 # Parent be781af446af78839e4c35102a03bc78632367fc fixed issue with no-cached dulwich repos diff -r be781af446af -r 3b3de7c68ae1 rhodecode/lib/diffs.py --- a/rhodecode/lib/diffs.py Thu Nov 29 21:35:59 2012 +0100 +++ b/rhodecode/lib/diffs.py Thu Nov 29 22:19:16 2012 +0100 @@ -724,7 +724,7 @@ org_ref = org_ref[1] other_ref = other_ref[1] - if org_repo == other_repo: + if org_repo_scm == other_repo_scm: log.debug('running diff between %s@%s and %s@%s' % (org_repo.path, org_ref, other_repo.path, other_ref)) _diff = org_repo_scm.get_diff(rev1=org_ref, rev2=other_ref,