mirror of
https://github.com/borgbackup/borg.git
synced 2024-12-29 11:16:43 +00:00
info: do not output deduplicated_size
No precise refcounting, can't compute that inexpensively.
This commit is contained in:
parent
0b85b1a8bd
commit
8455c95003
2 changed files with 0 additions and 2 deletions
|
@ -123,7 +123,6 @@ def __repr__(self):
|
|||
def as_dict(self):
|
||||
return {
|
||||
"original_size": FileSize(self.osize, iec=self.iec),
|
||||
"deduplicated_size": FileSize(self.usize, iec=self.iec),
|
||||
"nfiles": self.nfiles,
|
||||
"hashing_time": self.hashing_time,
|
||||
"chunking_time": self.chunking_time,
|
||||
|
|
|
@ -43,7 +43,6 @@ def do_info(self, args, repository, manifest, cache):
|
|||
Command line: {command_line}
|
||||
Number of files: {stats[nfiles]}
|
||||
Original size: {stats[original_size]}
|
||||
Deduplicated size: {stats[deduplicated_size]}
|
||||
"""
|
||||
)
|
||||
.strip()
|
||||
|
|
Loading…
Reference in a new issue