mirror of https://github.com/borgbackup/borg.git
cosmetic: don't word-wrap needlessly
This commit is contained in:
parent
98512736e5
commit
49d7c240a0
|
@ -169,10 +169,7 @@ class Statistics:
|
|||
return self.summary.format(stats=self, label='This archive:')
|
||||
|
||||
def __repr__(self):
|
||||
fmt = "<{cls} object at {hash:#x} ({self.osize}, {self.csize}, {self.usize})>"
|
||||
return fmt.format(cls=type(self).__name__,
|
||||
hash=id(self),
|
||||
self=self)
|
||||
return "<{cls} object at {hash:#x} ({self.osize}, {self.csize}, {self.usize})>".format(cls=type(self).__name__, hash=id(self), self=self)
|
||||
|
||||
@property
|
||||
def osize_fmt(self):
|
||||
|
|
Loading…
Reference in New Issue