Changeset 200
- Timestamp:
- 13/10/08 08:50:35 (3 months ago)
- Files:
-
- trunk/CHANGELOG (modified) (1 diff)
- trunk/pybackpack/gui.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/CHANGELOG
r197 r200 2 2 New in v0.5.7 () 3 3 -------------------------- 4 + Don't recurse into excluded directories (bugs #57 and #70) 4 5 5 6 New in v0.5.6 (25/09/2008) trunk/pybackpack/gui.py
r199 r200 531 531 for f in files: 532 532 fullpath = os.path.join(dirname, f) 533 if fullpath in set.files_exclude: 534 continue 533 535 if fullpath == set.dest: 534 536 self.statuswin.addmsg(_("NOTE: Destination directory in backup set. Omitting.")) … … 542 544 for d in dirs: 543 545 fullpath = os.path.join(dirname, d) 546 if fullpath in set.files_exclude: 547 dirs.remove(d) 548 continue 544 549 if os.access(fullpath, os.R_OK|os.X_OK): 545 550 filecount += 1
