]> git.lyx.org Git - lyx.git/commitdiff
did anybody test this?
authorGeorg Baum <georg.baum@post.rwth-aachen.de>
Sun, 18 Dec 2011 17:48:16 +0000 (17:48 +0000)
committerGeorg Baum <georg.baum@post.rwth-aachen.de>
Sun, 18 Dec 2011 17:48:16 +0000 (17:48 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40520 a592a061-630c-0410-9148-cb99ea01b6c8

lib/lyx2lyx/parser_tools.py

index 47bee707eaea8de372ab2ee7d1e7269d5e7e9a38..31948fe30c90d6f25b540b7bf6585c7e20d439b0 100644 (file)
@@ -307,7 +307,7 @@ def get_quoted_value(lines, token, start, end = 0, default = ""):
 
 
 def get_option_value(line, option):
-    rx = option + '\s*=\s*"([^"+])"'
+    rx = option + '\s*=\s*"([^"]+)"'
     rx = re.compile(rx)
     m = rx.search(line)
     if not m: