File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 1
1
Back In Time
2
2
3
3
Version 1.1.21
4
+ * fix bug: stat free space for snapshot folder instead of backintime folder (https://github.com/bit-team/backintime/issues/733)
4
5
* backport bug fix: backintime root crontab doesn't run; missinng line-feed 0x0A on last line (https://github.com/bit-team/backintime/issues/781)
5
6
* backport bug fix: can't open files with spaces in name (https://github.com/bit-team/backintime/issues/552)
6
7
Original file line number Diff line number Diff line change @@ -1707,7 +1707,7 @@ def _free_space( self, now ):
1707
1707
if len ( snapshots ) <= 1 :
1708
1708
break
1709
1709
1710
- free_space = self ._stat_free_space_local (self .config .get_snapshots_path ())
1710
+ free_space = self ._stat_free_space_local (self .config .get_snapshots_full_path ())
1711
1711
1712
1712
if free_space is None :
1713
1713
free_space = self ._stat_free_space_ssh ()
@@ -1784,7 +1784,7 @@ def _stat_free_space_ssh(self):
1784
1784
if self .config .get_snapshots_mode () not in ('ssh' , 'ssh_encfs' ):
1785
1785
return None
1786
1786
1787
- snapshots_path_ssh = self .config .get_snapshots_path_ssh ()
1787
+ snapshots_path_ssh = self .config .get_snapshots_full_path_ssh ()
1788
1788
if not len (snapshots_path_ssh ):
1789
1789
snapshots_path_ssh = './'
1790
1790
cmd = self .cmd_ssh (['df' , snapshots_path_ssh ])
You can’t perform that action at this time.
0 commit comments