]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/blobdiff - lib/whatever-dl/downloader.rb
Whitespace cleanup.
[dead/whatever-dl.git] / lib / whatever-dl / downloader.rb
index 85cc4e32a9a9fcea87dc7f8b0be6534179feb9a9..c21cccd8c448414d1e0ce4250ff2b3f78a790191 100644 (file)
@@ -21,19 +21,19 @@ class Downloader
   def self.create(download_method)
     # Return the subclass corresponding to download_method.
     case download_method
-    when :openuri
+    when 'openuri'
       return OpenUriDownloader.new()
-    when :wget
+    when 'wget'
       return WgetDownloader.new()
     end
   end
 
-  
+
   # Abstract
   def download(url, outfile, headers = {}, continue = false)
     raise NotImplementedError
   end
-  
+
 end