Comment 9 for bug 215612

Revision history for this message
Andrew Fenn (andrewfenn) wrote :

Anyone annoyed by this can use the following fix in __init__.py Replace the old function with the same name with the following.

def delete_remote_file(self, relpath):
    if not self.quiet:
        self.outf.write('Deleting %s\n' % relpath)
    try:
        self.to_transport.delete(relpath)
    except errors.NoSuchFile:
        self.outf.write('Error: %s does not exist\n' % relpath)