aboutsummaryrefslogtreecommitdiff
path: root/src/usr
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr')
-rw-r--r--src/usr/share/gmm/gmm_lib.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/usr/share/gmm/gmm_lib.py b/src/usr/share/gmm/gmm_lib.py
index 687547e..d1ce82c 100644
--- a/src/usr/share/gmm/gmm_lib.py
+++ b/src/usr/share/gmm/gmm_lib.py
@@ -338,6 +338,11 @@ class Gmm():
if args.gui == False or args.gui == True:
ferror(f"Setting show_gui to {args.gui}")
self.show_gui = args.gui
+ try:
+ if (self.show_gui):
+ pass
+ except AttributeError:
+ self.show_gui = True
if args.list:
if args.output == "json":
print(json.dumps(self.mounts))
bgstack15