From bee77e3b3fe45e164dda71e64b4a27ecb767ff30 Mon Sep 17 00:00:00 2001 From: Mike Young Date: Sun, 29 Dec 2019 23:01:41 -0500 Subject: [PATCH] Fixed typo message -> messages --- installer | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/installer b/installer index 9e4546c..40d6445 100644 --- a/installer +++ b/installer @@ -141,8 +141,7 @@ class SystemInstaller: return True def make_nginx_config(self, answers): - root = os.path.abspath(".") - _fp = "pyshelf_nginx.conf" + root = os.path.abspath(".") _fp = "pyshelf_nginx.conf" for r in answers: if r["name"] == "hostname": hostname = r["answer"] @@ -334,7 +333,7 @@ except Exception as e: messages = messages + ["nginx site config not copied", "you are responsible for setting up your web server"] sysinstall.make_wsgi_config(install_answers) -message = message + ["You should now import your books by running importBooks", "You can then start the interface with uwsgi --ini uwsgi.ini"] +messages = messages + ["You should now import your books by running importBooks", "You can then start the interface with uwsgi --ini uwsgi.ini"] # Display end screen sysinstall.log()