]> git.lyx.org Git - features.git/commitdiff
Very minor cleanup.
authorRichard Heck <rgheck@comcast.net>
Mon, 7 Feb 2011 23:48:29 +0000 (23:48 +0000)
committerRichard Heck <rgheck@comcast.net>
Mon, 7 Feb 2011 23:48:29 +0000 (23:48 +0000)
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@37555 a592a061-630c-0410-9148-cb99ea01b6c8

lib/scripts/convertDefault.py

index 6cd01632af9ec69e338a421dc5439f759e874e68..deb1af08663ce87cfdd29795b647dad92ba5291b 100644 (file)
@@ -27,7 +27,7 @@ fout.close()
 version = re_version.match(output)
 
 # Imagemagick by default
-gm = 0
+gm = False
 
 if version != None:
     major = int(version.group(1))
@@ -39,7 +39,7 @@ else:
     re_version = re.compile(r'^GraphicsMagick.*http:..www.GraphicsMagick.org.*$')
     version = re_version.match(output)
     if version != None:
-        gm = 1
+        gm = True
 
 opts = "-depth 8"