mirror of
https://github.com/borgbackup/borg.git
synced 2025-01-01 12:45:34 +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):
|
def as_dict(self):
|
||||||
return {
|
return {
|
||||||
"original_size": FileSize(self.osize, iec=self.iec),
|
"original_size": FileSize(self.osize, iec=self.iec),
|
||||||
"deduplicated_size": FileSize(self.usize, iec=self.iec),
|
|
||||||
"nfiles": self.nfiles,
|
"nfiles": self.nfiles,
|
||||||
"hashing_time": self.hashing_time,
|
"hashing_time": self.hashing_time,
|
||||||
"chunking_time": self.chunking_time,
|
"chunking_time": self.chunking_time,
|
||||||
|
|
|
@ -43,7 +43,6 @@ def do_info(self, args, repository, manifest, cache):
|
||||||
Command line: {command_line}
|
Command line: {command_line}
|
||||||
Number of files: {stats[nfiles]}
|
Number of files: {stats[nfiles]}
|
||||||
Original size: {stats[original_size]}
|
Original size: {stats[original_size]}
|
||||||
Deduplicated size: {stats[deduplicated_size]}
|
|
||||||
"""
|
"""
|
||||||
)
|
)
|
||||||
.strip()
|
.strip()
|
||||||
|
|
Loading…
Reference in a new issue