From 80b044ae27db7cc4cf0ebbaf7e686bad70bf9f35 Mon Sep 17 00:00:00 2001 From: Matthew D Date: Wed, 8 Mar 2017 13:44:27 -0600 Subject: [PATCH] Fixed missing quotes in template --- data/pyseqsee_app_template/gui/gui.py_tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/pyseqsee_app_template/gui/gui.py_tmpl b/data/pyseqsee_app_template/gui/gui.py_tmpl index 8ee4789..00704da 100644 --- a/data/pyseqsee_app_template/gui/gui.py_tmpl +++ b/data/pyseqsee_app_template/gui/gui.py_tmpl @@ -25,7 +25,7 @@ class {application_class}GUI(GUI): def __init__(self, **kwargs): GUI.__init__(self, **kwargs) - self.mw.title({application_name}) + self.mw.title('{application_name}') # EDIT-ME: You may wish to add key-bindings.