From 9bc0b0b8508da85b90cb3390b0bc92410a53acfe Mon Sep 17 00:00:00 2001 From: Ivan Alejandro Date: Fri, 2 Aug 2013 14:33:58 -0300 Subject: Bugfix, avoid getting negative rates. Closes #3274 --- changes/bug_3274-fix-negative-rates | 1 + src/leap/gui/statuspanel.py | 5 +++++ 2 files changed, 6 insertions(+) create mode 100644 changes/bug_3274-fix-negative-rates diff --git a/changes/bug_3274-fix-negative-rates b/changes/bug_3274-fix-negative-rates new file mode 100644 index 00000000..78df7a4f --- /dev/null +++ b/changes/bug_3274-fix-negative-rates @@ -0,0 +1 @@ + o Bugfix, avoid getting negative rates. Closes #3274. diff --git a/src/leap/gui/statuspanel.py b/src/leap/gui/statuspanel.py index 7c824e01..f3424c7c 100644 --- a/src/leap/gui/statuspanel.py +++ b/src/leap/gui/statuspanel.py @@ -86,6 +86,11 @@ class RateMovingAverage(object): rate = float(deltatraffic) / float(deltat) / 1024 except ZeroDivisionError: rate = 0 + + # In some cases we get negative rates + if rate < 0: + rate = 0 + return rate def get_total(self): -- cgit v1.2.3