diff options
-rw-r--r-- | .gitignore | 6 | ||||
-rw-r--r-- | src/usr/share/gmm/gmm_lib.py | 5 |
2 files changed, 11 insertions, 0 deletions
@@ -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)) |