diff --git a/artiq/gui/applets.py b/artiq/gui/applets.py index 868842018..a9fc4acf5 100644 --- a/artiq/gui/applets.py +++ b/artiq/gui/applets.py @@ -98,6 +98,9 @@ class AppletDock(dockarea.Dock): async def start(self): self.ipc = AppletIPCServer(self.datasets_sub) + if "{ipc_address}" not in self.command: + logger.warning("IPC address missing from command for %s", + self.applet_name) command = self.command.format(python=sys.executable, ipc_address=self.ipc.get_address()) logger.debug("starting command %s for %s", command, self.applet_name)