]> gitweb.michael.orlitzky.com - dead/whatever-dl.git/commitdiff
Fix a missing slash.
authorMichael Orlitzky <michael@orlitzky.com>
Wed, 13 Jun 2012 01:51:41 +0000 (21:51 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Wed, 13 Jun 2012 01:51:41 +0000 (21:51 -0400)
lib/whatever-dl.rb

index b32cefbd45747bb8e04f482d940e5b68ad30215e..f3b8907081874ccfccebf1ddb84cd69658cb557b 100644 (file)
@@ -34,7 +34,7 @@ my_path = Pathname.new(__FILE__).realpath.to_s
 # The Dir.glob that's coming up doesn't use the
 # Ruby library path so we need to tell it where to
 # look explicitly.
-websites_pattern = File.dirname(my_path) + 'whatever-dl/websites/*.rb'
+websites_pattern = File.dirname(my_path) + '/whatever-dl/websites/*.rb'
 
 # All of the website classes are located in one
 # directory, so we can 'require' them automatically.