]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blobdiff - lib/whatever-dl/open_uri_downloader.rb
Whitespace cleanup.
[dead/whatever-dl.git] / lib / whatever-dl / open_uri_downloader.rb
index e55c0fa7d0e60635b29b1d27b2f843f27da2d873..a3a0c357154b92bf4ac1fb07f758215873c6c1e7 100644 (file)
@@ -16,7 +16,7 @@
 # http://www.fsf.org/licensing/licenses/gpl.html
 #
 
-require 'src/uri_utilities'
+require 'whatever-dl/uri_utilities'
 
 class OpenUriDownloader < Downloader
 
@@ -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