[packages] Fix previous (false vs False)

This commit is contained in:
Adriaan de Groot 2017-12-02 05:20:13 -05:00
parent 150007c138
commit 3e3cd08ff3

View File

@ -426,7 +426,7 @@ def run():
else:
return "Bad backend", "backend=\"{}\"".format(backend)
skip_this = libcalamares.job.configuration.get("skip_if_no_internet", false)
skip_this = libcalamares.job.configuration.get("skip_if_no_internet", False)
if skip_this and not libcalamares.globalstorage.value("hasInternet"):
cDebug() << "WARNING: packages installation has been skipped: no internet";
return None