[localecfg] Fix error in string-formatting.

This commit is contained in:
Adriaan de Groot 2018-09-30 18:56:48 +02:00
parent b42a36e5ad
commit 7e88f637b1

View File

@ -134,7 +134,7 @@ def run():
if os.path.exists(target_locale_gen_bak): if os.path.exists(target_locale_gen_bak):
shutil.copy2(target_locale_gen_bak, target_locale_gen) shutil.copy2(target_locale_gen_bak, target_locale_gen)
libcalamares.utils.debug("Restored backup {!s} -> {!s}" libcalamares.utils.debug("Restored backup {!s} -> {!s}"
.format(target_locale_gen_bak).format(target_locale_gen)) .format(target_locale_gen_bak, target_locale_gen))
# run locale-gen if detected; this *will* cause an exception # run locale-gen if detected; this *will* cause an exception
# if the live system has locale.gen, but the target does not: # if the live system has locale.gen, but the target does not: