X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fwhatever-dl.git;a=blobdiff_plain;f=lib%2Fwhatever-dl%2Fopen_uri_downloader.rb;h=a3a0c357154b92bf4ac1fb07f758215873c6c1e7;hp=05e6fe7c060776d2f7e5ad7c0d3e5b1264e144f7;hb=1ce85761d9c5af706382c42e5d6c30dad46bf3ce;hpb=7363a7921a9e353722b929f4ff3eda8bf828ef52 diff --git a/lib/whatever-dl/open_uri_downloader.rb b/lib/whatever-dl/open_uri_downloader.rb index 05e6fe7..a3a0c35 100644 --- a/lib/whatever-dl/open_uri_downloader.rb +++ b/lib/whatever-dl/open_uri_downloader.rb @@ -26,12 +26,12 @@ class OpenUriDownloader < Downloader end uri = URI.parse(url) - + uu = UriUtilities.new() puts "Fetching #{url}" puts "Saving as #{outfile}." puts '' uu.download_with_progress_bar(uri, outfile, headers) end - + end