Fix bug when exclude pattern is None
This commit is contained in:
parent
0dd7b887f7
commit
06620a4dba
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1,3 @@
|
|||||||
.idea/
|
.idea/
|
||||||
|
__pycache__/
|
||||||
test/
|
test/
|
||||||
|
@ -185,9 +185,10 @@ class Backup:
|
|||||||
fp.write('\n')
|
fp.write('\n')
|
||||||
|
|
||||||
with open(self._exclude_path, 'w') as fp:
|
with open(self._exclude_path, 'w') as fp:
|
||||||
for e in self.exclude:
|
if self.exclude is not None:
|
||||||
fp.write(e)
|
for e in self.exclude:
|
||||||
fp.write('\n')
|
fp.write(e)
|
||||||
|
fp.write('\n')
|
||||||
|
|
||||||
if self.keep != -1 and self.remove_before:
|
if self.keep != -1 and self.remove_before:
|
||||||
self.remove_old_backups()
|
self.remove_old_backups()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user