From ccaf4a8ef38a12487dd62c15015da37508526cc7 Mon Sep 17 00:00:00 2001 From: Nick Bolton Date: Thu, 5 Mar 2015 17:30:08 +0000 Subject: [PATCH] Removed toolchain code to skip packages #4407 --- ext/toolchain/ftputil.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/ext/toolchain/ftputil.py b/ext/toolchain/ftputil.py index bbb9a271..cac71e7d 100644 --- a/ext/toolchain/ftputil.py +++ b/ext/toolchain/ftputil.py @@ -27,14 +27,6 @@ class FtpUploader: ftp = FTP(self.host, self.user, self.password) ftp.cwd(self.dir) - - # check to see if we should stop here - if not replace: - files = ftp.nlst() - if dest in files: - print 'Already exists, skipping.' - ftp.close() - return f = open(src, 'rb') ftp.storbinary('STOR ' + dest, f)