Skip to content

Commit 10d6e18

Browse files
committed
change order
1 parent 3d42003 commit 10d6e18

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

GDL.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -291,12 +291,12 @@ def run_libpart(self):
291291

292292
cmd = [self.converter, "hsf2libpart", self.cmdargs, self.folder_to_convert, self.gsm_path] # cmd, source, dest
293293
cmd = list(filter(None, cmd)) # filters out the empty cmdargs. otherwise Macs get hiccups. sigh.
294-
cmd = " ".join(cmd)
295-
# log.debug("GDL Command run: " + cmd)
296-
297294
# if you use `cmd` instead of `shell_cmd` you will get the infamous [Winerror 5]
298295
# see: https://forum.sublimetext.com/t/winerror-5-access-is-denied/
299296
# however, for `shell_cmd` to work we need to pass a string, not a list (!)
297+
cmd = " ".join(cmd)
298+
299+
# log.debug("GDL Command run: " + cmd)
300300
execCMD = {"shell_cmd": cmd}
301301

302302
self.window.run_command("exec", execCMD)

0 commit comments

Comments
 (0)