projects
/
tahoe-lafs
/
tahoe-lafs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aebd80f
)
web/statistics: fix typo that make immutable-download stats missing
author
Brian Warner
<warner@allmydata.com>
Tue, 15 Apr 2008 18:20:04 +0000
(11:20 -0700)
committer
Brian Warner
<warner@allmydata.com>
Tue, 15 Apr 2008 18:20:04 +0000
(11:20 -0700)
src/allmydata/web/status.py
patch
|
blob
|
history
diff --git
a/src/allmydata/web/status.py
b/src/allmydata/web/status.py
index 917c265f5cb32fc789449c39fed7d0afaab85216..06e9f0101ad42b1d3097678ce8813acccab9caf8 100644
(file)
--- a/
src/allmydata/web/status.py
+++ b/
src/allmydata/web/status.py
@@
-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_
up
loaded")
- bytes = data["counters"].get("downloader.bytes_
up
loaded")
+ files = data["counters"].get("downloader.files_
down
loaded")
+ bytes = data["counters"].get("downloader.bytes_
down
loaded")
return ("%s files / %s bytes (%s)" %
(files, bytes, abbreviate_size(bytes)))