From 9c0fc9b296cad0b81ed52707814004a0bf5ede77 Mon Sep 17 00:00:00 2001 From: Sebastian Celis Date: Tue, 12 Jan 2016 06:18:11 -0600 Subject: [PATCH] Remove period from the list of valid characters. Period is not allowed in Android strings. --- lib/twine/runner.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/twine/runner.rb b/lib/twine/runner.rb index 3b9ec49..e146e46 100644 --- a/lib/twine/runner.rb +++ b/lib/twine/runner.rb @@ -185,7 +185,7 @@ module Twine duplicate_keys = Set.new keys_without_tags = Set.new invalid_keys = Set.new - valid_key_regex = /^[A-Za-z0-9_.]+$/ + valid_key_regex = /^[A-Za-z0-9_]+$/ @strings.sections.each do |section| section.rows.each do |row|