Changeset 3369 for gitplugin/0.10
- Timestamp:
- 03/15/08 03:50:11 (9 months ago)
- Files:
-
- gitplugin/0.10/gitplugin/git_fs.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gitplugin/0.10/gitplugin/git_fs.py
r3249 r3369 168 168 tree_ls_info = None 169 169 170 if tree_ls_info !=None:171 (self.perm,k,self.sha,fn) = tree_ls_info172 else: 173 k = 'blob' 170 if tree_ls_info is None: 171 raise NoSuchNode(path, rev) 172 173 (self.perm,k,self.sha,fn) = tree_ls_info 174 174 175 175 rev=self.git.last_change(rev, p)
