From b2cced277235fe63a1bf46b0d240900ff0623f7d Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Thu, 18 Dec 2014 12:07:36 +0100 Subject: [PATCH] Add an applicationName property to Application --- PrinterApplication.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/PrinterApplication.py b/PrinterApplication.py index 68d8166da1..830dc5407c 100644 --- a/PrinterApplication.py +++ b/PrinterApplication.py @@ -12,7 +12,8 @@ import os.path class PrinterApplication(QtApplication): def __init__(self): - super(PrinterApplication, self).__init__() + super().__init__() + self.setApplicationName('printer') def run(self): self._plugin_registry.loadPlugins({ "type": "Logger"})