Changeset 153
- Timestamp:
- 10/09/06 17:17:05 (2 years ago)
- Files:
-
- trunk/cheesecake/cheesecake_index.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/cheesecake/cheesecake_index.py
r152 r153 773 773 774 774 if not found_on_cheeseshop: 775 self.value += (distance_from_pypi - 1) * self.distance_penalty 776 777 if distance_from_pypi: 775 if distance_from_pypi > 0: 776 self.value += (distance_from_pypi - 1) * self.distance_penalty 778 777 self.details += " following %d link" % distance_from_pypi 778 779 779 if distance_from_pypi > 1: 780 780 self.details += "s"
