From 47e8cccbe148d21e0730344634babf0a32558f6f Mon Sep 17 00:00:00 2001 From: Georg Baum Date: Thu, 19 Oct 2006 07:53:03 +0000 Subject: [PATCH] small readability fix git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@15369 a592a061-630c-0410-9148-cb99ea01b6c8 --- lib/lyx2lyx/lyx_1_5.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/lyx2lyx/lyx_1_5.py b/lib/lyx2lyx/lyx_1_5.py index 6a778fe2ad..c737b87bf0 100644 --- a/lib/lyx2lyx/lyx_1_5.py +++ b/lib/lyx2lyx/lyx_1_5.py @@ -277,7 +277,7 @@ This must be called after convert_commandparams. option = match.group(1) argument = match.group(2) lines = ['\\begin_inset LatexCommand bibitem'] - if not option == None: + if option != None: lines.append('label "%s"' % option[1:-1].replace('"', '\\"')) lines.append('key "%s"' % argument[1:-1].replace('"', '\\"')) lines.append('') -- 2.39.5