Print message after configfile has been written.

This commit is contained in:
Simon Wüllhorst 2016-05-29 20:44:26 +02:00
parent 55a9b5035e
commit 504a418e27

View file

@ -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 = ''