]> git.lyx.org Git - lyx.git/blobdiff - lib/scripts/prefs2prefs_prefs.py
Remove profiling.py
[lyx.git] / lib / scripts / prefs2prefs_prefs.py
index b625909a6d478afad0d0650bab7db3917f850ea5..fe7e0a1ff43b7b5ecc5db7392e70dfddc050ac2e 100644 (file)
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-
 # file prefs2prefs-prefs.py
 # This file is part of LyX, the document processor.
 # Licence details can be found in the file COPYING.
@@ -271,7 +269,7 @@ def latex_flavor(line):
        if flavor == "latex":
                return no_match
        return (True,
-               "\\converter \"%s\" \"%s\" \"%s\" \"latex=%s\"" % (conv, fmat, args, flavor))
+               f"\\converter \"{conv}\" \"{fmat}\" \"{args}\" \"latex={flavor}\"")
 
 
 emre = re.compile(r'^\\format\s+(.*)\s+"(document[^"]*?)"', re.IGNORECASE)
@@ -284,7 +282,7 @@ def export_menu(line):
        fmat = m.group(1)
        opts = m.group(2)
        return (True,
-               "\\Format %s \"%s,menu=export\"" % (fmat, opts))
+               f"\\Format {fmat} \"{opts},menu=export\"")
 
 # End format 1 conversions (for LyX 2.0)
 ########################################
@@ -301,7 +299,7 @@ def zipped_native(line):
        fmat = m.group(1)
        opts = m.group(2)
        return (True,
-               "\\Format %s \"%s,zipped=native\"" % (fmat, opts))
+               f"\\Format {fmat} \"{opts},zipped=native\"")
 
 def remove_default_papersize(line):
        if not line.lower().startswith("\\default_papersize"):
@@ -560,5 +558,5 @@ conversions = [
        [ 35, [add_dark_color]],
        [ 36, [add_spellcheck_default]],
        [ 37, [remove_fullscreen_widthlimit]],
-       [ 38, []],
+       [ 38, []]
 ]