summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-05-20 21:26:27 +0200
committerKevin Chabowski <kevin@kch42.de>2011-05-20 21:26:27 +0200
commit948ccc48c33f2edb56dfabe7c59855c7adf589aa (patch)
treec30383949bc248887c85244b0ca65422cfc9842c
parentee84df1648c5979e0af0aadfcef9809ad8e66c6a (diff)
downloaddotstr_edit-948ccc48c33f2edb56dfabe7c59855c7adf589aa.tar.gz
dotstr_edit-948ccc48c33f2edb56dfabe7c59855c7adf589aa.tar.bz2
dotstr_edit-948ccc48c33f2edb56dfabe7c59855c7adf589aa.zip
Another fix to the regex...
-rw-r--r--strfile.py2
1 files changed, 1 insertions, 1 deletions
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