$include_dir="/home/hyper-archives/boost-commit/include"; include("$include_dir/msg-header.inc") ?>
Subject: [Boost-commit] svn:boost r79953 - trunk/tools/release
From: bdawes_at_[hidden]
Date: 2012-08-10 09:34:01
Author: bemandawes
Date: 2012-08-10 09:34:00 EDT (Fri, 10 Aug 2012)
New Revision: 79953
URL: http://svn.boost.org/trac/boost/changeset/79953
Log:
Add messages to log file to better identify FTP actions
Text files modified:
trunk/tools/release/inspect.py | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
Modified: trunk/tools/release/inspect.py
==============================================================================
--- trunk/tools/release/inspect.py (original)
+++ trunk/tools/release/inspect.py 2012-08-10 09:34:00 EDT (Fri, 10 Aug 2012)
@@ -51,10 +51,13 @@
print 'Running inspect from ' + os.getcwd()
subprocess.call('dist/bin/inspect', stdout=open(filepath, 'w'))
-print 'Upload web page via ftp...'
+print 'FTP: Sign on...'
ftp = FTP(args.host, args.user, args.password)
+print 'FTP: List current contents...'
ftp.retrlines('LIST')
+print 'FTP: Upload web page via ftp...'
ftp.storlines('STOR ' + args.filename, open(filepath))
+print 'FTP: List updated contents...'
ftp.retrlines('LIST')
ftp.quit()