From: Uwe Stöhr Date: Sat, 26 May 2012 17:02:32 +0000 (+0200) Subject: lyx2lyx/lyx_2_1.py: remove 2 warnings I accidentally just committed X-Git-Tag: 2.1.0beta1~1832 X-Git-Url: https://git.lyx.org/gitweb/?a=commitdiff_plain;h=5463389ec9af49224b56f0c34c6c401a97a22c86;p=features.git lyx2lyx/lyx_2_1.py: remove 2 warnings I accidentally just committed --- diff --git a/lib/lyx2lyx/lyx_2_1.py b/lib/lyx2lyx/lyx_2_1.py index 84bf2bc507..395f011098 100644 --- a/lib/lyx2lyx/lyx_2_1.py +++ b/lib/lyx2lyx/lyx_2_1.py @@ -364,11 +364,9 @@ def revert_use_packages(document): i = find_re(document.header, regexp, j) if i != -1: value = get_value(document.header, "\\use_package %s" % p, i).split()[1] - document.warning(str(value)) del document.header[i] j = i document.header.insert(j, "\\use_%s %s" % (p, value)) - document.warning(str(value)) j = j + 1