mirror of
https://github.com/tahoe-lafs/tahoe-lafs.git
synced 2024-12-20 05:28:04 +00:00
web/statistics: fix typo that make immutable-download stats missing
This commit is contained in:
parent
aebd80feec
commit
b5d19456f4
@ -847,8 +847,8 @@ class Statistics(rend.Page):
|
||||
(files, bytes, abbreviate_size(bytes)))
|
||||
|
||||
def render_downloads(self, ctx, data):
|
||||
files = data["counters"].get("downloader.files_uploaded")
|
||||
bytes = data["counters"].get("downloader.bytes_uploaded")
|
||||
files = data["counters"].get("downloader.files_downloaded")
|
||||
bytes = data["counters"].get("downloader.bytes_downloaded")
|
||||
return ("%s files / %s bytes (%s)" %
|
||||
(files, bytes, abbreviate_size(bytes)))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user