From: Georg Baum Date: Sun, 18 Dec 2011 17:48:16 +0000 (+0000) Subject: did anybody test this? X-Git-Tag: 2.1.0beta1~2182 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=3da2eb41aa617f68b95d46c6d3c6f011d5dd8c77;p=features.git did anybody test this? git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@40520 a592a061-630c-0410-9148-cb99ea01b6c8 --- diff --git a/lib/lyx2lyx/parser_tools.py b/lib/lyx2lyx/parser_tools.py index 47bee707ea..31948fe30c 100644 --- a/lib/lyx2lyx/parser_tools.py +++ b/lib/lyx2lyx/parser_tools.py @@ -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: