aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore6
-rw-r--r--src/usr/share/gmm/gmm_lib.py5
2 files changed, 11 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 91c7c4f..3b04043 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,9 @@
__pycache__
*.orig
*.[0-9].gz
+.debhelper
+debian/debhelper-build-stamp
+debian/files
+debian/*.debhelper.log
+debian/*.substvars
+debian/gmm
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