Skip to content

Commit

Permalink
Merge pull request #38669 from mantidproject/38654_launch_script_in_e…
Browse files Browse the repository at this point in the history
…ditor

Skip first argument when calling main in launch script
  • Loading branch information
MialLewis authored Jan 23, 2025
2 parents b78002e + 22837a3 commit c18ab18
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def launch(args=None):
command = ["launch_mantidworkbench"] + args[1:]
subprocess.run(command)
else:
main(args)
main(args[1:])


if __name__ == "__main__":
Expand Down

0 comments on commit c18ab18

Please sign in to comment.