mirror of
https://github.com/borgbackup/borg.git
synced 2025-03-09 21:57:24 +00:00
fix issue #873
This commit is contained in:
parent
6a3f2d7864
commit
fd10d1386c
1 changed files with 1 additions and 1 deletions
|
@ -262,7 +262,7 @@ class Archiver:
|
|||
if (st.st_ino, st.st_dev) in skip_inodes:
|
||||
return
|
||||
# Entering a new filesystem?
|
||||
if restrict_dev and st.st_dev != restrict_dev:
|
||||
if restrict_dev is not None and st.st_dev != restrict_dev:
|
||||
return
|
||||
status = None
|
||||
# Ignore if nodump flag is set
|
||||
|
|
Loading…
Add table
Reference in a new issue