summaryrefslogtreecommitdiffstats
path: root/glances/exports/glances_csv/__init__.py
diff options
context:
space:
mode:
Diffstat (limited to 'glances/exports/glances_csv/__init__.py')
-rw-r--r--glances/exports/glances_csv/__init__.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/glances/exports/glances_csv/__init__.py b/glances/exports/glances_csv/__init__.py
index 88e0615a..82497d47 100644
--- a/glances/exports/glances_csv/__init__.py
+++ b/glances/exports/glances_csv/__init__.py
@@ -69,7 +69,9 @@ class Export(GlancesExport):
self.csv_file.close()
def update(self, stats):
- """Update stats in the CSV output file."""
+ """Update stats in the CSV output file.
+ This class overwrite the one in the parent class.
+ """
# Get the stats
all_stats = stats.getAllExportsAsDict(plugin_list=self.plugins_to_export(stats))