fixed problem with mkdir
This commit is contained in:
parent
e136401499
commit
47a54c5c2a
1 changed files with 2 additions and 1 deletions
|
@ -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:
|
||||
|
|
Reference in a new issue