Browse Source

Claudia: Fix ladish app command syntax

tags/v0.9.0
falkTX 13 years ago
parent
commit
fbfb394d37
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      src/claudia_launcher.py

+ 3
- 3
src/claudia_launcher.py View File

@@ -307,7 +307,7 @@ class ClaudiaLauncher(QWidget, ui_claudia_launcher.Ui_ClaudiaLauncherW):
os.mkdir(os.path.join(tmplte_folder, "peaks")) os.mkdir(os.path.join(tmplte_folder, "peaks"))


tmplte_cmd = binary tmplte_cmd = binary
tmplte_cmd += " '%s'" % os.path.basename(tmplte_folder) if self.callback_isLadishRoom() else tmplte_folder
tmplte_cmd += " '%s'" % (os.path.basename(tmplte_folder) if self.callback_isLadishRoom() else tmplte_folder)
tmplte_lvl = "1" tmplte_lvl = "1"


elif app == "ardour3": elif app == "ardour3":
@@ -330,7 +330,7 @@ class ClaudiaLauncher(QWidget, ui_claudia_launcher.Ui_ClaudiaLauncherW):
os.mkdir(os.path.join(tmplte_folder, "plugins")) os.mkdir(os.path.join(tmplte_folder, "plugins"))


tmplte_cmd = binary tmplte_cmd = binary
tmplte_cmd += " '%s'" % os.path.basename(tmplte_folder) if self.callback_isLadishRoom() else tmplte_folder
tmplte_cmd += " '%s'" % (os.path.basename(tmplte_folder) if self.callback_isLadishRoom() else tmplte_folder)


if self.callback_isLadishRoom(): if self.callback_isLadishRoom():
tmplte_lvl = "jacksession" tmplte_lvl = "jacksession"
@@ -342,7 +342,7 @@ class ClaudiaLauncher(QWidget, ui_claudia_launcher.Ui_ClaudiaLauncherW):
os.system("cp '%s' '%s'" % (os.path.join(tmplte_dir, "CalfJackHost"), tmplte_file)) os.system("cp '%s' '%s'" % (os.path.join(tmplte_dir, "CalfJackHost"), tmplte_file))


tmplte_cmd = binary tmplte_cmd = binary
tmplte_cmd += " --load '%s'" % os.path.basename(tmplte_file) if self.callback_isLadishRoom() else tmplte_file
tmplte_cmd += " --load '%s'" % (os.path.basename(tmplte_file) if self.callback_isLadishRoom() else tmplte_file)
tmplte_lvl = "1" tmplte_lvl = "1"


#elif (app == "hydrogen"): #elif (app == "hydrogen"):


Loading…
Cancel
Save