From 65a236cd6037e555b01689292efe0796bca1c4a3 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Sat, 2 Dec 2017 06:14:17 -0500 Subject: [PATCH] [packages] Fix previous. This, kids, is why you don't switch writing C++ and Python too often. The C++ code isn't a syntax error in Python, although this would fail at runtime. --- src/modules/packages/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/packages/main.py b/src/modules/packages/main.py index 64560082d..60ede34fa 100644 --- a/src/modules/packages/main.py +++ b/src/modules/packages/main.py @@ -428,7 +428,7 @@ def run(): 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"; + libcalamares.utils.debug( "WARNING: packages installation has been skipped: no internet" ) return None update_db = libcalamares.job.configuration.get("update_db", False)