fixed problem with mkdir

This commit is contained in:
jeena 2013-02-11 01:17:15 +01:00
parent e136401499
commit 47a54c5c2a

View file

@ -60,7 +60,8 @@ class Controller(QtCore.QObject):
QtCore.QObject.__init__(self)
self.app = app
os.mkdir(os.path.expanduser("~/.bungloo/"))
os.path.expanduser("~/.bungloo/")
self.config_path = os.path.expanduser('~/.bungloo/bungloo.cfg')
if os.access(self.config_path, os.R_OK):
with open(self.config_path, 'r') as f: