From 472e1535a615e9933d0b3df3853300348019e560 Mon Sep 17 00:00:00 2001 From: Dan Prince Date: Mon, 25 Jun 2012 23:59:10 -0400 Subject: Removes utils.fetch_file (no longer used). Change-Id: I75828a1e40f1daa3a15221f1ab8de484e6bb03ef --- nova/utils.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/nova/utils.py b/nova/utils.py index 3a74e1b98..166e0b4cb 100644 --- a/nova/utils.py +++ b/nova/utils.py @@ -114,11 +114,6 @@ def vpn_ping(address, port, timeout=0.05, session_id=None): return server_sess -def fetchfile(url, target): - LOG.debug(_('Fetching %s') % url) - execute('curl', '--fail', url, '-o', target) - - def execute(*cmd, **kwargs): """Helper method to execute command with optional retry. -- cgit