Changeset 1322
- Timestamp:
- 09/29/06 08:03:36 (2 years ago)
- Files:
-
- gitplugin/0.10/gitplugin/PyGIT.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gitplugin/0.10/gitplugin/PyGIT.py
r1321 r1322 80 80 81 81 def last_change(self, sha, path): 82 for rev in self. history(sha, path):83 return rev 82 for rev in self._git_call_f("git-rev-list --max-count=1 %s -- '%s'" % (sha,path)).readlines(): 83 return rev.strip() 84 84 return None 85 85
