From 948ccc48c33f2edb56dfabe7c59855c7adf589aa Mon Sep 17 00:00:00 2001 From: Kevin Chabowski Date: Fri, 20 May 2011 21:26:27 +0200 Subject: Another fix to the regex... --- strfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/strfile.py b/strfile.py index e80f709..f615cc9 100644 --- a/strfile.py +++ b/strfile.py @@ -3,7 +3,7 @@ import os, re -lotr_str_regex = re.compile(r'([A-Za-z]*\:.*?)\"(.*?)\"(?:.*?)END',re.DOTALL) +lotr_str_regex = re.compile(r'(.*?\:.*?)\"(.*?)\"(?:.*?)END',re.DOTALL) def dict_parse(rawdata): global lotr_str_regex -- cgit v1.2.3-54-g00ecf