psearch
psearch copied to clipboard
Bug in statistics calculation
Hi there!
There is a small bug in src/scripts/external_statistics.py
, line 45.
Statement if line[-1] == 1:
needs to be replaced with if line[-1] == "1"
because you compare strings to strings, otherwise number of actives counts as 0 always.
Branch lib