From 504a418e273a1ba98da64991625cd1a1004c471b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Simon=20W=C3=BCllhorst?= Date: Sun, 29 May 2016 20:44:26 +0200 Subject: [PATCH] Print message after configfile has been written. --- generator/NginxConfGen.py | 1 + 1 file changed, 1 insertion(+) diff --git a/generator/NginxConfGen.py b/generator/NginxConfGen.py index 2f827a6..dce9581 100644 --- a/generator/NginxConfGen.py +++ b/generator/NginxConfGen.py @@ -31,6 +31,7 @@ class NginxConfGen(object): f = open(self.__args__.out_file,'w') f.write(self.__genNginxConfigFileContent__()) f.close() + print('Nginx configfile has been created. You can find it at:', self.__args__.out_file) def __genNginxConfigFileContent__(self): content = ''