diff options
Diffstat (limited to 'qml')
-rw-r--r-- | qml/mageiawelcome.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qml/mageiawelcome.py b/qml/mageiawelcome.py index 0f19557..20cc8aa 100644 --- a/qml/mageiawelcome.py +++ b/qml/mageiawelcome.py @@ -32,8 +32,10 @@ class ConfList(QAbstractListModel): kernel = subprocess.getoutput('uname -r') if os.uname()[4] == 'x86_64': arch = '64-bit' - else: + elif os.uname()[4] == 'i586': arch = '32-bit' + else: + arch = os.uname()[4] try: desktop = get_desktop_name(os.path.basename(os.getenv("DESKTOP_SESSION"))) except: |