Changeset 949:235472e65d0f
- Timestamp:
- 05/07/19 18:32:19 (6 years ago)
- Branch:
- python3
- Phase:
- public
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/mlx/update.py
r948 r949 120 120 modifiedAndNew.append((path, otherSize, otherSum)) 121 121 122 removed = [path for path in self._files if path not in other._files] 122 if os.name=="nt": 123 otherFiles = [path.lower() for path in other._files] 124 else: 125 otherFiles = other._files 126 127 removed = [path for path in self._files if 128 (path.lower() if os.name=="nt" else path) not in otherFiles] 123 129 124 130 return (modifiedAndNew, removed)
Note:
See TracChangeset
for help on using the changeset viewer.