From 6ae7a6cc40d1a9c13a2e3286314787c02d09f84d Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 4 Oct 2005 14:06:54 +0000 Subject: [PATCH] upload files to /incoming git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@4303 212acab6-be3b-0410-9dea-997c60f758d6 --- Scripts/release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/release.py b/Scripts/release.py index ce6218b7..2404dad4 100644 --- a/Scripts/release.py +++ b/Scripts/release.py @@ -284,7 +284,7 @@ print 'uploading files to SourceForge...' def upload(ftp, file): print ' uploading %s...' % file - ftp.storbinary('STOR %s' % file.split('\\')[-1], open(file, 'rb')) + ftp.storbinary('STOR /incoming/%s' % file.split('\\')[-1], open(file, 'rb')) ftp = FTP('upload.sourceforge.net') ftp.login()