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()