Allow LF in commands

This commit is contained in:
bnnm 2019-11-23 20:57:32 +01:00
parent 7bc17a0550
commit edf8340110

View File

@ -138,7 +138,7 @@ def main():
if args.command_volume:
ftxtp.write("commands = #@volume " + args.command_volume + "\n")
if args.command:
ftxtp.write(args.command + "\n")
ftxtp.write(args.command.replace("\\n", "\n") + "\n")
if __name__ == "__main__":