From 6019a0f2156a758aaeff03412961c3491124938e Mon Sep 17 00:00:00 2001 From: Arjen Hiemstra Date: Tue, 9 Dec 2014 11:52:49 +0100 Subject: [PATCH] Use the PrintApplication's getInstance method to instantiate the printer application --- printer.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/printer.py b/printer.py index 9d86e20220..8d42a92bd4 100755 --- a/printer.py +++ b/printer.py @@ -2,5 +2,5 @@ from PrinterApplication import PrinterApplication -app = PrinterApplication() -app.run() \ No newline at end of file +app = PrinterApplication.getInstance() +app.run()