Skip to content

Commit

Permalink
Revert exclusion of pyside check. Fixes #1.
Browse files Browse the repository at this point in the history
  • Loading branch information
joepal1976 committed Jul 10, 2017
1 parent 4b22df3 commit e788ab0
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions makehuman/lib/core.py
Expand Up @@ -38,7 +38,6 @@

import importlib
import importlib.util
import platform

class Globals(object):
def __init__(self):
Expand All @@ -50,7 +49,7 @@ def __init__(self):
self.windowHeight = 600
self.windowWidth = 800
self.clearColor = (0.0, 0.0, 0.0, 0.0)
self.hasPySide = (importlib.util.find_spec("PySide") is not None) and platform.uname().system != 'Linux'
self.hasPySide = (importlib.util.find_spec("PySide") is not None)

G = Globals()

0 comments on commit e788ab0

Please sign in to comment.