[Pcsclite-cvs-commit] r6722 - website
ludovic.rousseau at free.fr
ludovic.rousseau at free.fr
Thu Aug 8 20:08:06 UTC 2013
Author: rousseau
Date: 2013-08-08 20:08:05 +0000 (Thu, 08 Aug 2013)
New Revision: 6722
Modified:
website/calculate_stats.py
Log:
Use the parameter readers instead of the global variable all_readers
Modified: website/calculate_stats.py
===================================================================
--- website/calculate_stats.py 2013-08-08 20:05:27 UTC (rev 6721)
+++ website/calculate_stats.py 2013-08-08 20:08:05 UTC (rev 6722)
@@ -36,9 +36,9 @@
def display_stats_for_field(readers, field, csv=False):
- total = len(all_readers) + 0.0
+ total = len(readers) + 0.0
- stats = get_stats_for_field(all_readers, field)
+ stats = get_stats_for_field(readers, field)
if csv:
# CSV file
More information about the Pcsclite-cvs-commit
mailing list