Print message after configfile has been written.
This commit is contained in:
parent
55a9b5035e
commit
504a418e27
|
@ -31,6 +31,7 @@ class NginxConfGen(object):
|
||||||
f = open(self.__args__.out_file,'w')
|
f = open(self.__args__.out_file,'w')
|
||||||
f.write(self.__genNginxConfigFileContent__())
|
f.write(self.__genNginxConfigFileContent__())
|
||||||
f.close()
|
f.close()
|
||||||
|
print('Nginx configfile has been created. You can find it at:', self.__args__.out_file)
|
||||||
|
|
||||||
def __genNginxConfigFileContent__(self):
|
def __genNginxConfigFileContent__(self):
|
||||||
content = ''
|
content = ''
|
||||||
|
|
Loading…
Reference in a new issue