Fix references to CLI options.

This commit is contained in:
Sebastian Celis 2012-02-27 15:49:33 -06:00
parent c3b5932202
commit 27828519f4
2 changed files with 2 additions and 2 deletions

View file

@ -77,7 +77,7 @@ module Twine
@strings.sections.each do |section|
printed_section = false
section.rows.each do |row|
if row.matches_tags?(options[:tags])
if row.matches_tags?(@options[:tags])
if !printed_section
f.puts ''
if section.name && section.name.length > 0

View file

@ -74,7 +74,7 @@ module Twine
@strings.sections.each do |section|
printed_section = false
section.rows.each do |row|
if row.matches_tags?(options[:tags])
if row.matches_tags?(@options[:tags])
if !printed_section
f.puts ''
if section.name && section.name.length > 0