Fix references to CLI options.
This commit is contained in:
parent
c3b5932202
commit
27828519f4
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Reference in a new issue