Fix call to write_file for generate-loc-drop.

This commit is contained in:
Sebastian Celis 2012-02-24 16:58:16 -06:00
parent 34f7ff8c9c
commit 82235cadeb

View file

@ -137,7 +137,7 @@ module Twine
file_name = lang + formatter.class::EXTENSION
real_path = File.join(dir, file_name)
zip_path = File.join('Locales', file_name)
formatter.write_file(real_path, lang, @options[:tags], @strings)
formatter.write_file(real_path, lang)
zipfile.add(zip_path, real_path)
end
end