curtin-dev team mailing list archive
-
curtin-dev team
-
Mailing list archive
-
Message #02047
[Merge] ~ogayot/curtin:remove-debug-print into curtin:master
Olivier Gayot has proposed merging ~ogayot/curtin:remove-debug-print into curtin:master.
Commit message:
Remove leftover debug print statement
Requested reviews:
curtin developers (curtin-dev)
For more details, see:
https://code.launchpad.net/~ogayot/curtin/+git/curtin/+merge/414047
Remove leftover debug print statement
--
Your team curtin developers is requested to review the proposed merge of ~ogayot/curtin:remove-debug-print into curtin:master.
diff --git a/curtin/commands/apt_config.py b/curtin/commands/apt_config.py
index be4a039..bbaf7e0 100644
--- a/curtin/commands/apt_config.py
+++ b/curtin/commands/apt_config.py
@@ -628,7 +628,6 @@ def apply_apt_preferences(cfg, pref_fname):
LOG.debug("no apt preferences configured, removed %s", pref_fname)
return
prefs_as_strings = [preference_to_str(pref) for pref in prefs]
- print(prefs_as_strings)
LOG.debug("write apt preferences info to %s.", pref_fname)
util.write_file(pref_fname, "\n".join(prefs_as_strings))
Follow ups