fix missing parentheses in template string

This commit is contained in:
jziolkowski
2019-11-29 21:44:35 +01:00
parent bd4ffa6634
commit d88f648db8

View File

@@ -281,7 +281,7 @@ class SendConfigDialog(QDialog):
backlog.append("module {}".format(self.cbModule.currentData()))
elif self.module_mode == 1:
backlog.extend(["template {}".format(self.leTemplate.text), "module 0"])
backlog.extend(["template {}".format(self.leTemplate.text()), "module 0"])
self.commands = "backlog {}\n".format(";".join(backlog))