mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-25 15:33:39 +00:00
Merge pull request #7368 from vhadzhiev/vhadzhiev_contribution
fixed Statistics.__add__(), fixes #7355
This commit is contained in:
commit
3f2aac8f00
1 changed files with 2 additions and 2 deletions
|
@ -79,8 +79,8 @@ def __add__(self, other):
|
|||
stats.nfiles = self.nfiles + other.nfiles
|
||||
stats.chunking_time = self.chunking_time + other.chunking_time
|
||||
stats.hashing_time = self.hashing_time + other.hashing_time
|
||||
for key in other.files_stats:
|
||||
stats.files_stats[key] = self.files_stats[key] + other.files_stats[key]
|
||||
st1, st2 = self.files_stats, other.files_stats
|
||||
stats.files_stats = defaultdict(int, {key: (st1[key] + st2[key]) for key in st1.keys() | st2.keys()})
|
||||
|
||||
return stats
|
||||
|
||||
|
|
Loading…
Reference in a new issue