mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
`quoted'' ->
quoted'
This commit is contained in:
parent
a50db30185
commit
569f6fd505
3 changed files with 3 additions and 3 deletions
|
@ -34,5 +34,5 @@ class CheckHostDependencies(Task):
|
|||
try:
|
||||
log_check_call(['/usr/bin/dpkg-query', '-s', package])
|
||||
except CalledProcessError:
|
||||
msg = "The package ``{0}\'\' is not installed".format(package)
|
||||
msg = "The package `{0}\' is not installed".format(package)
|
||||
raise TaskError(msg)
|
||||
|
|
|
@ -6,7 +6,7 @@ import os
|
|||
|
||||
|
||||
class AddSudoPackage(Task):
|
||||
description = 'Adding ``sudo\'\' to the image packages'
|
||||
description = 'Adding `sudo\' to the image packages'
|
||||
phase = phases.preparation
|
||||
predecessors = [apt.AddDefaultSources]
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@ from common.tasks import apt
|
|||
|
||||
|
||||
class AddUnattendedUpgradesPackage(Task):
|
||||
description = 'Adding ``unattended-upgrades\'\' to the image packages'
|
||||
description = 'Adding `unattended-upgrades\' to the image packages'
|
||||
phase = phases.preparation
|
||||
predecessors = [apt.AddDefaultSources]
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue