From be2d407e0475282421698556608bfc38becd273a Mon Sep 17 00:00:00 2001 From: Morgan Aldridge Date: Mon, 20 May 2024 10:18:26 -0400 Subject: [PATCH] Fixed missing 'end' in restored '-o'/'--only' option --- bin/wayback_machine_downloader | 1 + 1 file changed, 1 insertion(+) diff --git a/bin/wayback_machine_downloader b/bin/wayback_machine_downloader index f5daa60..fd213b2 100755 --- a/bin/wayback_machine_downloader +++ b/bin/wayback_machine_downloader @@ -36,6 +36,7 @@ option_parser = OptionParser.new do |opts| opts.on("-o", "--only ONLY_FILTER", String, "Restrict downloading to urls that match this filter", "(use // notation for the filter to be treated as a regex)") do |t| options[:only_filter] = t + end opts.on("-w", "--wait SECONDS", Integer, "Wait the specified number of seconds between requests") do |t| options[:wait_seconds] = t