From ee84df1648c5979e0af0aadfcef9809ad8e66c6a Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Fri, 20 May 2011 18:06:16 +0200 Subject: Fixed bug in lotr_str_regex --- strfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strfile.py b/strfile.py index b70e8c4..e80f709 100644 --- a/strfile.py +++ b/strfile.py @@ -3,7 +3,7 @@ import os, re -lotr_str_regex = re.compile(r'([A-Z]*\:.*?)\"(.*?)\"(?:.*?)END',re.DOTALL) +lotr_str_regex = re.compile(r'([A-Za-z]*\:.*?)\"(.*?)\"(?:.*?)END',re.DOTALL) def dict_parse(rawdata): global lotr_str_regex -- cgit v1.2.3-54-g00ecf