add an empty line in another place (for some weird reason, the old log line failed after cvs tagging)

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4404 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2005-11-12 15:04:25 +00:00
parent 39c07f1b29
commit be35aed2b3

View file

@ -96,7 +96,7 @@ def exit(log_dir = '.'):
sys.exit(3)
def run(command, log_name, err, wanted_ret = 0, log_dir = '.'):
log('running %s' % command, log_dir)
log('\nrunning %s\n' % command, log_dir)
if log_name:
cmd = '%s >> %s\\release-%s.log 2>&1' % (command, log_dir, VERSION)
@ -108,8 +108,6 @@ def run(command, log_name, err, wanted_ret = 0, log_dir = '.'):
log('*** ' + err, log_dir)
exit(log_dir)
log('', log_dir)
def confirm(question):
print question
if raw_input() != 'y':