Fix bug
This commit is contained in:
parent
d80ae7cd13
commit
2aa198426b
1 changed files with 2 additions and 2 deletions
|
@ -62,7 +62,7 @@ class Main(Quick):
|
|||
|
||||
def install_(self):
|
||||
self.close()
|
||||
subprocess.call('sudo sh /etc/calamares/launch.sh')
|
||||
subprocess.call('sudo sh /etc/calamares/launch.sh',shell=True)
|
||||
|
||||
def __init__(self):
|
||||
super(Main, self).__init__()
|
||||
|
@ -100,4 +100,4 @@ class Main(Quick):
|
|||
app = QGuiApplication([])
|
||||
app.setWindowIcon(QIcon(":/ParchLogo.svg"))
|
||||
m = Main()
|
||||
app.exec()
|
||||
app.exec()
|
Loading…
Add table
Reference in a new issue