summaryrefslogtreecommitdiffstats
path: root/glances/standalone.py
diff options
context:
space:
mode:
Diffstat (limited to 'glances/standalone.py')
-rw-r--r--glances/standalone.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/glances/standalone.py b/glances/standalone.py
index 8ea5400a..a1e62e59 100644
--- a/glances/standalone.py
+++ b/glances/standalone.py
@@ -105,6 +105,10 @@ class GlancesStandalone(object):
# Init screen
self.screen = GlancesCursesStandalone(config=config, args=args)
+ # If an error occur during the screen init, continue if export option is set
+ # It is done in the screen.init function
+ self._quiet = args.quiet
+
# Check the latest Glances version
self.outdated = Outdated(config=config, args=args)