summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin Chabowski <kevin@kch42.de>2011-05-20 18:06:16 +0200
committerKevin Chabowski <kevin@kch42.de>2011-05-20 18:06:16 +0200
commitee84df1648c5979e0af0aadfcef9809ad8e66c6a (patch)
treef22d7985ab0ae9101870b5664dd5188da8226963
parent3787569eeba8fde6b78ea37f2b1d3ad15390c647 (diff)
downloaddotstr_edit-ee84df1648c5979e0af0aadfcef9809ad8e66c6a.tar.gz
dotstr_edit-ee84df1648c5979e0af0aadfcef9809ad8e66c6a.tar.bz2
dotstr_edit-ee84df1648c5979e0af0aadfcef9809ad8e66c6a.zip
Fixed bug in lotr_str_regex
-rw-r--r--strfile.py2
1 files changed, 1 insertions, 1 deletions
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