summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/pybootchartgui/pybootchartgui/parsing.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/scripts/pybootchartgui/pybootchartgui/parsing.py b/scripts/pybootchartgui/pybootchartgui/parsing.py
index bcfb2da569..b7b2546ff1 100644
--- a/scripts/pybootchartgui/pybootchartgui/parsing.py
+++ b/scripts/pybootchartgui/pybootchartgui/parsing.py
@@ -513,8 +513,6 @@ def _parse_proc_meminfo_log(file):
Parse file for global memory statistics.
The format of relevant lines should be: ^key: value( unit)?
"""
- used_values = ('MemTotal', 'MemFree', 'Buffers', 'Cached', 'SwapTotal', 'SwapFree',)
-
mem_stats = []
meminfo_re = re.compile(r'([^ \t:]+):\s*(\d+).*')